`
ITCheng
  • 浏览: 78530 次
  • 来自: 北京
社区版块
存档分类
最新评论

iframe自适应高度

    博客分类:
  • Jsp
阅读更多

    js

 

//ifame自适应高度,被包含的页面,内部有影响页面长度的要在页面中完成操作好再次调用这个方法。如:parent.iFrameHeight();
        function iFrameHeight() {
            //set current page title 
            document.title=(document.getElementById('mainFrame').contentWindow.document.title);
            var ifm = document.getElementById("mainFrame");
            var subWeb = document.frames ? document.frames["mainFrame"].document : ifm.contentDocument;
            if (ifm != null && subWeb != null) {
                ifm.height = subWeb.body.scrollHeight;
            }
        } 

 

 

    iframe中加入

 

 

id='mainFrame' name='mainFrame'onLoad='iFrameHeight()'

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics