欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

iframe高度自适应问题

程序员文章站 2022-07-14 21:53:17
...

今天写了一下html静态页,遇到iframe高度自适应问题。本来是使用bootstrap的,看它上面的文档说直接使用它们给好样式就可以了。但是并没有达到要的效果。
最后使用了这个中方法解决了。

<div class="col-lg-10 col-md-10">
            <div class="embed-responsive embed-responsive-4by3" id="mainContent">
                <iframe class="embed-responsive-item" id="mainFrame" src="home.html" onload="javascript:iframeAutoHeight();"></iframe>
            </div>
          </div>

这里是使用js实现的,代码如下

        //iframe 高度自适应
        function iframeAutoHeight(){
            var iframe=document.getElementById("mainFrame");
            if(navigator.userAgent.indexOf("MSIE")>0||navigator.userAgent.indexOf("rv:11")>0||navigator.userAgent.indexOf("Firefox")>0){
                iframe.height=iframe.contentWindow.document.body.scrollHeight;
            }else{
                iframe.height=iframe.contentWindow.document.documentElement.scrollHeight;
            }
            iframe.style.cssText="height:"+iframe.height+"px;";
            $("#mainContent").css("height",iframe.height+"px");
            $("#menu").css("height",iframe.height+"px");
        }

注:无关代码请忽略

各位大神有什么好的解决方案,可以劳烦留言一下给小弟吗,万分感谢!