我的页面中嵌入了iframe。 我看到一张带有悲伤脸的纸质图标。
我检查它,它的标识为#sub-frame-error-details
<iframe id="iframe-rm" name="my-iframe" src="https://192.237.175.25:555/" width="100%" height="800px" class=""></iframe>
console.log($('#sub-frame-error-details').length);
我一直都是0。
document.getElementById("sub-frame-error-details")
我得到了null
var obj = $("#iframe-rm").contents().find("#main-frame-error");
console.log(obj.length);
仍然打印0
。
如何检测它是否存在?
对此的任何提示/建议将不胜感激!