使用 jQuery 更改 iFrame 的 HTML?

发布于 2024-11-05 20:48:44 字数 61 浏览 0 评论 0原文

有没有办法使用 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 技术交流群。

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

发布评论

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

评论(4

∞觅青森が 2024-11-12 20:48:44

您必须解析 iframe 内容。

$("#frameid").contents().find("div").html('My html');

更多信息:http://api.jquery.com/contents/

You'll have to parse the iframe content.

$("#frameid").contents().find("div").html('My html');

More here : http://api.jquery.com/contents/

送舟行 2024-11-12 20:48:44

您可以使用 contents() 来操作 的内容iframe

$("#frameDemo").contents().find("div").html("new HTML content goes here");

You can use contents() to manipulate the contents of the iframe.

$("#frameDemo").contents().find("div").html("new HTML content goes here");
や莫失莫忘 2024-11-12 20:48:44

以下是jQuery 文档中的示例:

<!DOCTYPE html>
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <iframe src="http://api.jquery.com/" width="80%" height="600" id='frameDemo'></iframe> 
<script>$("#frameDemo").contents().find("a").css("background-color","#BADA55");</script>

</body>
</html>

Here is an example from the jQuery documentation:

<!DOCTYPE html>
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <iframe src="http://api.jquery.com/" width="80%" height="600" id='frameDemo'></iframe> 
<script>$("#frameDemo").contents().find("a").css("background-color","#BADA55");</script>

</body>
</html>
水溶 2024-11-12 20:48:44

如果您想更改 iframe 的 标记内的内容,可以使用以下代码:

$("#iframe_id").contents().find("body").html('my_new_content');

If you want to change the contents inside the <body> tag of the iframe, you can use this code:

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