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自适应高度的主要内容,如果未能解决你的问题,请参考以下文章