如何检查iframe中是否存在Div

时间:2015-01-10 15:06:35

标签: html iframe

大家好我想检查iframe show alert"

中是否存在 DIV测试
 <html>
  <body>
   <div id="test">test</div>
  </body>
</html>

我将这个html文件加载到我的iframe中。如何检查 DIV测试是否存在?

<iframe src="1.html" width="80%" height="600" id="frameDemo"></iframe>

1 个答案:

答案 0 :(得分:0)

var iframe = document.getElementById('frameDemo');
var innerDoc = iframe.contentDocument || iframe.contentWindow.document;
var test = innerDoc.getElementById('test');

if(test != undefined) {

    alert('Exists');

}else{

    alert('Do no Exists');
}

:)