日期:2014-05-16  浏览次数:20381 次

js怎么获取iframe里面的html内容
<div id="login-form-log" style="top: 40px; ">
<iframe id="resultFrame" name="resultFrame" height="300" width="600" src="">
</iframe>
</div>  

网上找了一下,以下方法好像不行,请问应该怎么获取iframe里面的内容
var doc;
if(document.all){//IE
doc = document.frames["resultFrame"].document;
}else{//Firefox
doc = document.getElementById("resultFrame").contentDocument;
}
var resultValue = doc.body.innerHTML;

alert(resultValue);

------解决方案--------------------
同域或跨子域读写操作 iframe 里的内容

父页面读写操作子页面:

HTML code

<iframe id="test-iframe" name="test-iframe" src="child.html" scrolling="no" frameborder="0"></iframe>

<script>
window.onload = function () {
  /*
   *  下面两种获取节点内容的方式都可以。
   *  由于 IE6, IE7 不支持 contentDocument 属性,所以此处用了通用的
   *  window.frames["iframe Name"] or window.frames[index]
   */
  var d = window.frames["test-iframe"].document;
  d.getElementsByTagName('h1')[0].innerHTML = 'pp';
  alert(d.getElementsByTagName('h1')[0].firstChild.data);
}
</script>