我加
d3.behavior.zoom().on("zoom", redraw);
现在节点上的点击事件在 IE9 中不起作用。
var nodeEnter = node.enter().append("g")
.attr("class", "node")
.attr("transform", function(d) { return "translate(" + source.y0 + "," + source.x0 + ")"; })
.on("click", click, true);
我该怎么做才能让点击事件在 IE9 中也能正常工作?
//詹斯