I found both of them works in my test:
.on(\"mouseover\",
function() {
d3.select(this)
.select(\"text\")
It depends slightly on the svg object that you make in d3.
When you want to make a circle element for example then it will have an 'x', 'y' and 'r' attribute (attr) that define the shape and the location of the circle element. You can style the circle with things like opacity, fill color, etc.
Attributes usually denote the size and shape of an svg object while style usually indicates more designy aspects of the svg objects that you use in your visualisation.