大家好我想检查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>
答案 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');
}
:)