我是 javascript 和 D3.js 的新手
我正在使用https://gist.github.com/4062045上的 Force Directed Graph 示例
我需要获取对单击的圆形元素的绑定数据的引用,以便我可以添加一个链接。
我在圆圈的点击处理程序中有以下代码行:
d3.select(this).each(function(d){console.log(d)});
我可以将对象打印到控制台,但我不知道如何获取对该对象的引用,以便可以将其推送到链接对象中,例如:
{source: <reference to node should go here>, target: some_other_node}
感谢你们的帮助!