Iframe框架自适应高度

在父页:

<script>  
  //Iframe自适应高度  
  function InitHeight(objIframe){  
  var o=objIframe  
  if(!o)
  return;  
  o.style.height=o.contentWindow.document.body.scrollHeight+"px";  
  }  
  function SetSrc()
  {
      document.getElementById("myIframe").src="Default5.aspx";
  }
  </script>

 

<iframe  id="myIframe" onload="InitHeight(this)"   frameborder="0"   marginwidth="0"   marginheight="0"   src="Default4.aspx"     width="500px"   scrolling="no"></iframe>

posted on 2008-09-16 17:53  leanco  阅读(411)  评论(1)    收藏  举报

导航