D3相当于jQuery属性选择器

时间:2012-06-15 00:47:44

标签: jquery select d3.js

有没有人知道d3等同于jQuery属性选择器:

$('[attribute="name"]')

我希望能够使用d3方法,例如.transition()。谢谢!

1 个答案:

答案 0 :(得分:30)

D3和jQuery都是一样的;基础功能由W3C Selectors API提供,因此请参阅有关属性选择器的文档。例如,d3.select("[id=body]")相当于d3.select("#body")