如何禁用对话框 -alert()?
我有一个显示 iframe 的页面。 iframe 与网站位于同一域中,因此我可以编辑和读取其内容,但我无法编辑 iframe 的源代码,因为我无权访问文件本身。 iframe 正在警告一条消息,我想禁用它。 我想至少为我自己禁用对话框,我正在使用 chrome...
这是否可以在不禁用 javascript 的情况下实现? 或者我可以仅在 iframe 内禁用 javascript 吗?
I have a page where I'm displaying iframes. The iframes are on the same domain with the website so I can edit and read the content of it, but I can't edit the source code of the iframes, because I don't have access to the file itself.
The iframes are alerting a message and I want to disable this.
I want to disable the dialog boxes at least for myself, I`m using chrome...
Is this possible without disabling javascript ?
Or could I disable javascript only inside the iframes ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样:
它用一个不执行任何操作的函数覆盖第一个 iframe 内的警报函数,因此在那里调用的所有
alert(...)
调用都不会发生任何事情。对于后续的 iframe,您需要将
0
更改为1
等。What about:
It overwrites the alert function inside the first iframe with a function that does nothing, hence all
alert(...)
calls called there result in nothing happening.As for subsequent iframes, you'd need to change
0
into1
etc.