我有一个UserScript,它应该删除第一个mousemove事件中某个类的所有图像。
在编写Greasemonkey脚本时非常新,好吧这是我的第一个脚本,我认为只有一些小错过。
// ==UserScript==
// @name aname
// @namespace anamespace
// @description adescription
// @include http://www.google.com/search*
// @include http://www.google.com/webhp*
// @include http://www.google.com/#*
// @include http://www.google.com/
// ==/UserScript==
var removeTags = function () {
var allHTMLTags = window.document.getElementsByTagName("*");
for (i=0; i < allHTMLTags.length; i++) {
if (allHTMLTags[i].className == "l sb-l") {
allHTMLTags[i].style.display='none';
}
}
};
document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = removeTags;
感谢您的帮助!
答案 0 :(得分:1)
尝试addEventListener
window.addEventListener('mousemove',removeTags,false);