Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道 d3 相当于 jQuery 属性选择器:
$('[attribute="name"]')
我希望能够使用 .transition() 等 d3 方法。谢谢!
在 D3 和 jQuery 中都是一样的;底层功能由W3C Selectors API提供,因此请参阅有关属性选择器的文档。例如,d3.select("[id=body]")等价于d3.select("#body")。
d3.select("[id=body]")
d3.select("#body")