iframe自适应高度

Posted wanyong-wy

tags:

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

html:

<iframe name="ifraRight" id="ifraRight"  src="jsp/countRoomMeasure.jsp" onload="iFrameHeight(‘ifraRight‘)" height="100%" frameborder="0" width="100%" scrolling="auto"></iframe>

js:

//iframe自适应高度
function iFrameHeight(id) {

    var ifm= document.getElementById(id);

    var subWeb = document.frames ? document.frames[id].document : ifm.contentDocument;

    if(ifm != null && subWeb != null) {

       ifm.height = subWeb.body.scrollHeight;

    }

}

 

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

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

jQuery解决iframe高度自适应代码

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

iframe高度自适应

iframe自适应高度的多种方法

如何让iframe自适应高度