如何替换 Iframe 中的内容
我在此页面上有一个 Iframe,并且想要更改 Iframe 中出现的文本。想知道这是否可能。 阿罗哈, 格雷格
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我在此页面上有一个 Iframe,并且想要更改 Iframe 中出现的文本。想知道这是否可能。 阿罗哈, 格雷格
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如果可以将 URL 变量传递给 iframe,则可以更改 iframe 中的文本。如果您可以访问它,这可能是最简单的方法。
如果您无法在 iframe 中编辑代码,您能否提供有关设置的更多详细信息?
You can change the text in the iframe if you can pass in URL variables to the iframe. That's probably the easiest way if you can access it.
If you can't edit the code in the iframe, can you please give more details about the setup?
根据 HTML5 iframe 规范 的定义,有四种情况:您可以访问 iFrame 的内容。
基本上可以归结为这样一个事实:除非您尝试访问的 iframe 与父页面不在同一域下,否则您将无法访问它。
As defined by HTML5 iframe Specs, there are four casess under which you you can access the contents of an iFrame.
Basically it boils down to the fact that unless the iframe your trying to access is not under the same domain as the parent page, then you wont be able to access it.