0

我正在尝试制作一个书签来更改我访问的任何页面的光标。

我这样做:

<a href="javascript:var i,s,ss=['http://www.zombiepanic.info/wp-content/themes/MYgRID/js/tronc.js','http://code.jquery.com/jquery-1.7.2.min.js'];for(i=0;i!=ss.length;i++){s=document.createElement('script');s.src=ss[i];document.body.appendChild(s);}void(0);"> Go! </a>

我的js文件是:

(function() {

    function getCssTransform() {

        $('body').css('cursor','crosshair');

    }

getCssTransform();


})();

它在我制作的 empty.html 页面中完美运行,但是当我不想在 google 或 facebook 或其他网站中使用时,脚本被注入但我的光标没有改变……</p>

有任何想法吗 ?

(Ps:对不起英语,我是法国人)

编辑 :

(function ($) {

$(document).ready(function() {

document.body.style.cursor="crosshair";
});

})(jQuery);

我试试这个,但这是同样的问题。

4

1 回答 1

0
(function(){var a=document.createElement("style");
 a.innerText="*{cursor:crosshair !important}";document.body.appendChild(a)
})()

似乎工作正常。(为了清楚起见,最多分成 3 行。)

于 2012-05-01T14:33:06.470 回答