iframe的高度随内容变化而变化的代码

iframe框架高度随内容的变化而变化的代码。 iframe src="XXX.htm" width="700px" frameborder="0" id="frmsrc" scrolling="no" marginheight="0" onload="AutoIframe()"/iframe script type="text/javascript" function AutoIframe() { if(document.readyStat

iframe框架高度随内容的变化而变化的代码。

<iframe src=”XXX.htm” width=”700px” frameborder=”0″ id=”frmsrc” scrolling=”no” marginheight=”0″ onload=”AutoIframe()”></iframe>

<script type=”text/javascript”>
    function AutoIframe()
    {
        if(document.readyState!=’complete’)
        {
            setTimeout( function(){AutoIframe();},25 );
            return;
        }
        else
        {
           var ifobj=document.getElementById(“frmsrc”);
           ifobj.height= ifobj.contentWindow.document.body.scrollHeight;
        }
    }
</script>

//PS: XXX.htm不可跨域

<iframe src=”dd.html” id=”frmMain” name=”frmMain” width=”99%” height=”100%” frameborder=0 scrolling=no marginHeight=0 marginWidth=0 onload=”Javascript:SetWinHeight(this)” ></iframe>

function SetWinHeight(obj)
{
 var win=obj;
 if (document.getElementById)
 {
    if (win && !window.opera)
    {
  if (win.contentDocument && win.contentDocument.body.offsetHeight)
    win.height = win.contentDocument.body.offsetHeight;
  else if(win.Document && win.Document.body.scrollHeight)
    win.height = win.Document.body.scrollHeight;
    }
 }
}

给TA打赏
共{{data.count}}人
人已打赏
HTML教程

HTML中特殊字符的显示

2007-10-8 1:37:00

HTML教程

一种简洁的选项卡效果代码

2007-10-28 16:28:00

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
有新私信 私信列表
搜索