gpt4 book ai didi

javascript - D3.JS 获取点击对象绑定(bind)数据的引用

转载 作者:可可西里 更新时间:2023-11-01 01:42:13 31 4
gpt4 key购买 nike

我是 javascript 和 D3.js 的新手

我正在使用 https://gist.github.com/4062045 上的力导向图示例

我需要获得对单击的圆元素的绑定(bind)数据的引用,以便我可以向其添加链接。

我在圈子的点击处理程序中有以下代码行:

d3.select(this).each(function(d){console.log(d)});

我能够将对象打印到控制台,但我不知道如何获取对该对象的引用,以便我可以将其推送到链接对象中,例如:

{source: <reference to node should go here>, target: some_other_node}

感谢你们的帮助!

最佳答案

circles.on('click', datum => {
console.log(datum); // the datum for the clicked circle
});

# selection.on(typenames[, listener[, capture]])

When a specified event is dispatched on a selected node, the specified listener will be evaluated for each selected element, being passed the current datum (d), the current index (i), and the current group (nodes), with this as the current DOM element.

关于javascript - D3.JS 获取点击对象绑定(bind)数据的引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14786373/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com