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