admin管理员组文章数量:1303345
I am using D3 and I want to select all elements on the page that have a certain class. I have tried:
d3.selectAll("body").attr("body", "symbol-clicked");
but this assigns the class symbol-clicked to all elements on the page. I just want a collection of group of elements that already have the symbol-clicked class so I can change it to just symbol.
Any help is greatly appreciated.
I am using D3 and I want to select all elements on the page that have a certain class. I have tried:
d3.selectAll("body").attr("body", "symbol-clicked");
but this assigns the class symbol-clicked to all elements on the page. I just want a collection of group of elements that already have the symbol-clicked class so I can change it to just symbol.
Any help is greatly appreciated.
Share Improve this question asked May 12, 2014 at 4:40 jetstreaminjetstreamin 4175 silver badges19 bronze badges1 Answer
Reset to default 9Use
d3.select("body").selectAll(".className")
This will give you all the elements with the class 'className'.
To get elements with multiple classes. Try
d3.select("body").selectAll(".className1").filter(".className2")
本文标签: javascriptD3 Selecting all elements having a certain class or combination of classesStack Overflow
版权声明:本文标题:javascript - D3 Selecting all elements having a certain class or combination of classes - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741757020a2396174.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论