iframe 子页面高度自适应问题

iframe 子页面自适应问题,网上找了不少,都是只能够高度变大,不能够变小,形成高度比较大的页面切换高度比较小的页面的时候出现空白(滚动条在最下面),效果不太好get

下面是我总结的一下,能够变大,也能够变小iframe

iframe页面JSit

function reinitIframe() {
var iframe = document.getElementById("content");
try {
var bHeight = iframe.contentWindow.document.body.scrollHeight;
var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
var height = Math.min(bHeight, dHeight);
iframe.height = height;

} catch (ex) { }

}
window.setInterval("reinitIframe()", 20);io

 

HTML代码function

<iframe id="content" src="/Home/Index" style="width:100%;" scrolling="no" frameborder =0></iframe>scroll

相关文章
相关标签/搜索