如何禁用对话框 -alert()?

发布于 2024-11-19 21:28:33 字数 212 浏览 1 评论 0原文

我有一个显示 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 技术交流群。

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

发布评论

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

评论(1

幻想少年梦 2024-11-26 21:28:33

怎么样:

window.frames[0].alert = function() {};

它用一个不执行任何操作的函数覆盖第一个 iframe 内的警报函数,因此在那里调用的所有 alert(...) 调用都不会发生任何事情。

对于后续的 iframe,您需要将 0 更改为 1 等。

What about:

window.frames[0].alert = function() {};

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 into 1 etc.

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