2013-07-19 31 views

回答

0

你可以做我的CSS:

.plotclass:hover { 
    cursor: url('pathtocursor'); 
} 
0

我不知道你想要什麼,但我認爲這會幫助你。

plot.bind("plothover", function(event, pos, item) { 
    if(item) { 
     document.body.style.cursor = 'pointer'; 
    } else { 
     document.body.style.cursor = 'default'; 
    } 
} 
相關問題