码迷,mamicode.com
首页 > 其他好文 > 详细

IFRAME自适应高度

时间:2014-07-29 17:07:32      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   strong   io   cti   div   log   

function iframeAutoFit(iframeObj) {
    setTimeout(function() {
                if (!iframeObj)
                    return;
                iframeObj.height = (iframeObj.Document
                        ? iframeObj.Document.body.scrollHeight
                        : iframeObj.contentDocument.body.offsetHeight);
            }, 200)
}

iframe的document属性和Document属性区别:

document表示iframe所在页面的document。

Document表示iframe内容页的document。让iframe高度随内容页高度自动适应时会用到这个属性

IFRAME自适应高度,布布扣,bubuko.com

IFRAME自适应高度

标签:style   blog   color   strong   io   cti   div   log   

原文地址:http://www.cnblogs.com/rigid/p/3875565.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!