iframe自适应高度

时间:2007-11-21 11:03   作者:    阅读:315

今天baidu到了这样一套让iframe自适应高度的代码。感觉挺实用,故收藏之!
function setIframeHeight(iframe)
  {
    if (document.getElementById)
    {
        if (iframe && !window.opera)
        {
            if (iframe.contentDocument && iframe.contentDocument.body.offsetHeight)
                iframe.height = iframe.contentDocument.body.offsetHeight;
            else if(iframe.Document && iframe.Document.body.scrollHeight)
                iframe.height = iframe.Document.body.scrollHeight;
        }
    }
  }
<iframe id="ifrm" width="100%" frameborder="0" scrolling="no" onload="setIframeHeight(this)" src="main.aspx"></iframe>

 

评论
0/200