我有一个svg图像。我需要使用javascript将svg图像设置为鼠标指针。
我可以使用以下代码将图像设置为鼠标指针:
$("div").mouseover(function(){
$(this).attr("style","cursor: url(red_bucket.png), pointer;");
});
是否有可能将svg设置为鼠标指针......?
答案 0 :(得分:2)
这应该有效
$("div").mouseover(function(){
$(this).attr("style","cursor: url('red_bucket.svg'), pointer;");
});