使用 jQuery 更改 iFrame 的 HTML?
有没有办法使用 jQuery 操作来自同一域的 iframe 的 HTML?
感谢您的帮助。
Is there a way to manipulate the HTML of an iframe that is from the same domain using jQuery?
Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您必须解析 iframe 内容。
更多信息:http://api.jquery.com/contents/
You'll have to parse the iframe content.
More here : http://api.jquery.com/contents/
您可以使用
contents()
来操作的内容iframe
。You can use
contents()
to manipulate the contents of theiframe
.以下是jQuery 文档中的示例:
Here is an example from the jQuery documentation:
如果您想更改 iframe 的
标记内的内容,可以使用以下代码:
If you want to change the contents inside the
<body>
tag of the iframe, you can use this code: