gpt4 book ai didi

javascript - 检查 iframe 中是否存在 html 文本

转载 作者:太空宇宙 更新时间:2023-11-04 13:05:33 24 4
gpt4 key购买 nike

非常感谢任何帮助。我在网页中显示了一个 iframe,我想在此 iframe 中搜索特定的文本字符串,例如“Go Bananas”- 检查是否找到匹配项

现在如果我使用 $("#HTML").contents()[0]在 Chrome Dev Tools 控制台中,我能够将整个 DOM 对象导航到文本所在的位置 <span>Go Bananas</span> ...路径不一定总是相同的


<iframe src="http"//localhost/site/theemmbededsite.html>
#document
<html>
<body>
<div>
<span> Go Bananas </span>

我的问题是:如何检查此对象中是否存在此文本“Go Bananas”$("#HTML").contents()[0]并返回 truefalse

我已经尝试了一堆 jquery 函数但无济于事..将不胜感激任何帮助

最佳答案

搜索并获取长度,然后根据长度放置条件。

if($("iframe").contents().text().search("Go Bananas") > -1)
//found -- do stuff
else
//not-found do stuff

使用 jQuery contents().text().search() 方法。

关于javascript - 检查 iframe 中是否存在 html 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42416174/

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