iframe自适应高度

Posted 京沙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iframe自适应高度相关的知识,希望对你有一定的参考价值。

iframe自适应高度,实现原理是在iframe页面加载完成后将页面的高度赋值到iframe上。

<iframe id="myIframe" src="/src.html" style="width:1220px; border:0px;" scrolling="no" onload="autoHeight()"></iframe>

function autoHeight() {

    var ifr = document.getElementById(‘myIframe‘);
    ifr.height = (ifr.contentDocument && ifr.contentDocument.body.offsetHeight)
            || (ifr.contentWindow.document.body.scrollHeight);
}

 

以上是关于iframe自适应高度的主要内容,如果未能解决你的问题,请参考以下文章

Iframe的代码怎么写才能满足我的自适应内容的高度的要求啊?

jQuery解决iframe高度自适应代码

iframe自适应高度设置(iframe自适应高度和宽度)

iframe高度自适应

iframe自适应高度的多种方法

如何让iframe自适应高度