如何覆盖onLoad?

发布于 2024-10-10 23:43:19 字数 154 浏览 2 评论 0原文

我正在使用的这个页面有一个非常烦人的警报(其典型的 JavaScript 警报,因此欢迎任何其他黑客),该警报显示在 Load 上,我可以通过 GM 以某种方式阻止它吗?

PS 据我了解,GM 是在页面加载后执行的。有什么方法可以单击警报上的“确定”或覆盖 onLoad 吗?

I'm using this page that has a very annoying alert(its typical JavaScript alert, so any other hacks are welcome) that is displayed onLoad, can I stop it somehow with GM?

P.S. From what I understand GM is executed after the page has already loaded. Is there any way to click "ok" on the alert or override onLoad?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

北城孤痞 2024-10-17 23:43:19

如果网页使用老式的检测 onLoad 的方法,您可能可以这样做:

unsafeWindow.onload = function() {};

如果他们使用 JavaScript 库来侦听 onLoad 或 contentReady 事件,我不确定如何覆盖这些事件。

If the webpage is using the old fashioned method of detecting onLoad, you probably can just do:

unsafeWindow.onload = function() {};

If they are using a JavaScript library to listen for the onLoad or contentReady events I'm not sure how you could override those.

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