试图弄清楚这种不一致的行为。小提琴下面 当我在Chrome版本43.0.2357.81中使用本地http服务器(node或python)加载此页面时,mouseover事件会在对象内部和外部的鼠标点击时触发,但它在JSfiddle和IE11中正常工作。
有没有人遇到过这个问题?
小提琴here。
.on("mouseover", function(d) {
//debugger
console.log("test")
d3.select(this)
.style("stroke-width", "10px")
.style("opacity", 1);
})
.on("mouseout", function(d) {
//debugger
console.log("test2")
d3.select(this)
.style("stroke-width", null)
.style("opacity", null);
});