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