0

我有一个 svg 图像。我需要使用 javascript 将该 svg 图像设置为鼠标指针。

我可以使用以下代码将图像设置为鼠标指针:

  $("div").mouseover(function(){
            $(this).attr("style","cursor: url(red_bucket.png), pointer;");
        });

是否可以将 svg 设置为鼠标指针...?

4

1 回答 1

2

这应该工作

    $("div").mouseover(function(){
        $(this).attr("style","cursor: url('red_bucket.svg'), pointer;");
    });
于 2013-07-24T10:35:50.993 回答