在鼠标悬停时光标变为按钮形式

On mouseover cursor changes to button form

我的 d3.js 需要一些帮助。有人可以帮我实现一项功能,即鼠标悬停在光标上时会变成 "click" 光标形式吗?例如,当您将鼠标悬停在堆栈溢出的按钮上时,光标会发生变化。

.on("mouseover", function() {
        d3.select(this)
            .style("fill", "#3b6887");

    })

查看您可以使用的不同游标cursor CSS | MDN

尝试以下方法

.on('mouseover', function() {
    d3.select(this)
        .style('fill', '#3b6887')
        .style('cursor', 'pointer');
});