zoukankan      html  css  js  c++  java
  • IFrame自适应高度

    <script type="text/javascript">
        <!--
    //此脚本放在子窗体中
        function iframeAutoFit()
        {
        return;
            try
           {
                if(window!=parent)
                {
                    var a = parent.document.getElementsByTagName("IFRAME");
                    for(var i=0; i<a.length; i++)
                    {
                        if(a[i].contentWindow==window)
                        {
                            var h1=0, h2=0, d=document, dd=d.documentElement;
                            a[i].parentNode.style.height = a[i].offsetHeight +"px";
                            a[i].style.height = "10px";

                            if(dd && dd.scrollHeight) h1=dd.scrollHeight;
                            if(d.body) h2=d.body.scrollHeight;
                            var h=Math.max(h1, h2);

                            if(document.all){h += 4;}
                            if(window.opera){h += 1;}
                            a[i].style.height = a[i].parentNode.style.height = h +"px";
                        }
                    }
                }
            }
            catch (ex){}       
        }
        if(window.attachEvent)
        {
            window.attachEvent("onload",  iframeAutoFit);
        }
        else if(window.addEventListener)
        {
            window.addEventListener('load',  iframeAutoFit,  false);
        }
        //-->
        </script>



    纵向参考
  • 相关阅读:
    C# 寻找数组中的最大子数组
    C# 求两个矩阵相交面积
    C# 排序方法
    oracleI基础入门(8)tableINTERSECT Crazy
    oracleI基础入门附(2)算总合百分比,算累积总合百分比 Crazy
    oracleI基础入门附(1)算中位数,算累积总计 Crazy
    oracleI基础入门(9)table子查询 Crazy
    oracleI基础入门(10)EXISTS Crazy
    oracleI基础入门(11)case Crazy
    oracleI基础入门(8)tableMINUS Crazy
  • 原文地址:https://www.cnblogs.com/qfb620/p/1083586.html
Copyright © 2011-2022 走看看