如何覆盖onLoad?
我正在使用的这个页面有一个非常烦人的警报(其典型的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果网页使用老式的检测 onLoad 的方法,您可能可以这样做:
如果他们使用 JavaScript 库来侦听 onLoad 或 contentReady 事件,我不确定如何覆盖这些事件。
If the webpage is using the old fashioned method of detecting onLoad, you probably can just do:
If they are using a JavaScript library to listen for the onLoad or contentReady events I'm not sure how you could override those.