我发现它们都在我的测试中有效:
.on("mouseover",
function() {
d3.select(this)
.select("text")
.style("fill","red");
})
或者
.on("mouseover",
function() {
d3.select(this)
.select("text")
.attr("fill","red");
})