Greasemonkey onmousemove 脚本
我有一个用户脚本,它应该在第一个鼠标移动事件上删除某个类的所有图像。
作为编写 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;
感谢您的帮助!
I have a UserScript which should remove all images of a certain class on the first mousemove-event.
Being pretty new in writing Greasemonkey-scripts, okay this is my first script, I think there is just something small missing.
// ==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;
Thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试添加事件监听器
Try
addEventListener