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>



    纵向参考
  • 相关阅读:
    Android 9.png图片制作
    Android 基于Socket的聊天室
    poj 1659 Frogs' Neighborhood
    zoj 2836 Number Puzzle
    zoj 1372 Networking
    hdoj 4259 Double Dealing
    Direct2D (33) : 通过 ID2D1BitmapRenderTarget 绘制背景网格
    Direct2D (36) : RenderTarget.DrawText() 与 IDWriteTextFormat
    Direct2D (35) : 通过 DirectWrite 获取字体列表
    Direct2D (37) : 使用不同画刷绘制文本
  • 原文地址:https://www.cnblogs.com/qfb620/p/1083586.html
Copyright © 2011-2022 走看看