检查iframe中的元素是否存在

时间:2016-05-16 18:42:40

标签: javascript jquery iframe

我的页面中嵌入了iframe。 我看到一张带有悲伤脸的纸质图标。

enter image description here

我检查它,它的标识为#sub-frame-error-details

的iFrame

<iframe id="iframe-rm" name="my-iframe" src="https://192.237.175.25:555/" width="100%" height="800px" class=""></iframe>

尝试#1

console.log($('#sub-frame-error-details').length);

我一直都是0。

尝试#2

document.getElementById("sub-frame-error-details")

我得到了null

尝试#3

var obj = $("#iframe-rm").contents().find("#main-frame-error");

console.log(obj.length);

仍然打印0

如何检测它是否存在?

对此的任何提示/建议将不胜感激!

0 个答案:

没有答案