greatmonkey:addEventListener 问题

发布于 2024-09-10 02:40:52 字数 252 浏览 2 评论 0原文

我有一个如下的用户脚本:

document.addEventListener('click', alert('hello monkey'), true);

有两个问题:

  1. “hello Monkey”仅在刷新浏览器时发出警报,单击窗口时不起作用。

  2. 使用GM的“管理用户脚本”来编辑脚本,没有发生更改。 (本地光盘上的源代码被更改。)

I've a userscript as the following:

document.addEventListener('click', alert('hello monkey'), true);

There were two problems:

  1. "hello monkey" is alerted only when refreshing the browser, not work when clicking window.

  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小矜持 2024-09-17 02:40:52

您需要绑定它,这样它就不会自动执行...

document.addEventListener('click', function(){alert('hello monkey')}, true);

但不确定#2。

You need to bind it so it isn't executed automatically...

document.addEventListener('click', function(){alert('hello monkey')}, true);

Not sure about #2 though.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文