首页 > 代码库 > js获取框架(IFrame)的内容

js获取框架(IFrame)的内容

 

<frameset id="fr" rows="50%,50%">
      <frame name="up" id="up" src="http://www.mamicode.com/u.html"/>
      <frame name="down" id="down" src="http://www.mamicode.com/d.html"/>
</frame>

 

 

var objValue=http://www.mamicode.com/window.parent.frames["down"].document.getElementById("456");
  alert(objValue.value);

js获取框架(IFrame)的内容