greatmonkey:addEventListener 问题
我有一个如下的用户脚本:
document.addEventListener('click', alert('hello monkey'), true);
有两个问题:
“hello Monkey”仅在刷新浏览器时发出警报,单击窗口时不起作用。
使用GM的“管理用户脚本”来编辑脚本,没有发生更改。 (本地光盘上的源代码被更改。)
I've a userscript as the following:
document.addEventListener('click', alert('hello monkey'), true);
There were two problems:
"hello monkey" is alerted only when refreshing the browser, not work when clicking window.
using GM's 'manage user script' to edit the script, the change doesn't happen. (The source code on the local disc was changed.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要绑定它,这样它就不会自动执行...
但不确定#2。
You need to bind it so it isn't executed automatically...
Not sure about #2 though.