【发布时间】:2017-01-13 17:50:09
【问题描述】:
我正在尝试从 iframe 中删除滚动条。当我手动设置 iframe 的高度时,它可以工作,但 iframe 的大小可以改变,我不知道如何在页面加载时获取 iframe 的高度。
有什么方法可以移除滚动条并适合 Iframe 内容?
<div class="portlet" id="pageContainer">
<iframe id="frame" width="100%" frameborder="0" height="2000" scrolling="false" allowfullscreen="" src="/app/mytestapp" style="overflow: hidden"></iframe>
</div>
当我尝试低于功能时,它不会返回正确的高度。 (它返回 2000px 但我的 iframe 高度接近 3000px)
$('iframe').load(function() {
this.contentWindow.document.body.offsetHeight + 'px';
});
【问题讨论】:
-
这一行没有目的:this.contentWindow.document.body.offsetHeight + 'px'; .尝试 height="2000px" 。可能溢出:隐藏使内容 iframe 的 px 不可见。
标签: javascript jquery html iframe