gpt4 book ai didi

Jquery 在 iframe 中搜索文本

转载 作者:行者123 更新时间:2023-12-01 02:59:56 25 4
gpt4 key购买 nike

有人可以帮忙吗?

我想在 iframe 中搜索字符串,例如。我有一个名为 main.html 的页面,其中有一个 iframe,并且 iframe(somesite.com)的内容内部有一个字符串,可以说“Home”。我想要发生的是有一个脚本将搜索 iframe“#com”内的字符串“home”,并发出一条消息,提示已找到该字符串。我希望使用 jquery 而不是服务器端脚本来完成此操作。请注意,somesite.com 是一个外部网站,我无法控制它。

ma​​in.html:

<html>
<body>
<input type="button" id="search" value="search">
<iframe id="com" src="http://somesite.com"></iframe>
</body>
</html>

somesite.com

<html>
<body>
Home
</body>
</html>

抱歉英语不好,如果您有一些说明,请发表评论。

最佳答案

你可以尝试:

$("#com").contents();

请注意,$.contents() 只能在源自同一域的 iframe 上执行,因为 Same Origin Policy .

以便您可以使用它来显示警报:

if($("#com").contents().text()search("someText")!=-1){
alert("found");
}

关于Jquery 在 iframe 中搜索文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11965025/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com