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;

    }

}

 

posted @ 2018-10-21 20:36  记忆斑驳的回忆  阅读(157)  评论(0编辑  收藏  举报