我对编码完全陌生,我试图在单击节点时将重定向添加到 url,经过几天的搜索,这就是我所做的
var svg = d3.select("body")
.style("width", w + "px")
.style("height", h + "px")
.append("svg:svg")
//.attr("width", w)
//.attr("height", h)
.append("svg:g")
.attr("transform", "translate(.5,.5)")
.on("click",function(){ window.open("new.html");});
我正在研究https://gist.github.com/1446865 但它不起作用你能帮忙吗?一个小的修改我已经在 SVG 变量上添加了 .on("click" 现在它正在工作,现在我需要 URL 作为 d.key 但不能让它工作!