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>



    纵向参考
  • 相关阅读:
    html书签展示(带搜索)
    PHP 无限级分类(递归)
    文件服务器的搭建
    php swoole 和 websocket的初次碰撞
    Linux 服务管理的两种方式service和systemctl
    Jquery 代码参考
    分享几个网址二维码生成api
    WordPress 缩率图学习笔记
    Linux 究级基础入门命令整理
    ltrim的思考
  • 原文地址:https://www.cnblogs.com/qfb620/p/1083586.html
Copyright © 2011-2022 走看看