gpt4 book ai didi

javascript - 查找 iFrame 内容

转载 作者:行者123 更新时间:2023-12-03 07:35:18 26 4
gpt4 key购买 nike

我正在尝试找出一种方法来在下面的 JSFiddle 中选择 iFrame,其中显示“测试”。我尝试这样做的方法如下,但似乎不起作用。我无法使用 class/id 选择任何内容,因为 div 是在我的网站中动态生成的。

$('.big-box').each(function(index) 
{
if ($(this).find("div").find("iframe").contents().find("body").contents().length > 0)
{
console.log("Trigger");
};
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<div class="big-box">
<iframe>
Other
</iframe>
<div>
<iframe>
<body>
Test
</body>
</iframe>
</div>
</div>

最佳答案

删除 find("body") 之后的 contents()

contents()仅在 iframe 上使用,其他 DOM 元素不需要它。

关于javascript - 查找 iFrame 内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35639775/

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