html代码:
<iframe src="/seller/goods/list" scrolling="no" onload="setIframeHeight(this)" id="bodyCenter" name="workspace" frameborder="0" width="100%" height="100%" style="min-height:800px;" ></iframe>
js代码
function setIframeHeight(iframe) {
if (iframe) {
var iframeWin = iframe.contentWindow || iframe.contentDocument.parentWindow;
if (iframeWin.document.body) {
iframe.height = iframeWin.document.documentElement.scrollHeight || iframeWin.document.body.scrollHeight;
}
}
};
注意一下几点:1.iframe 的scrolling="no"一定要设置好,不发生先出现滚动条在消失的情况。
2.如果ifream有默认高地可以设置height="100%" style="min-height:800px;"
ifream高度只适应解决方案

最新推荐文章于 2019-12-09 14:05:28 发布
