ifream高度只适应解决方案

来源:互联网 发布:爱因斯坦名言知乎 编辑:程序博客网 时间:2024/05/17 07:51
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;"
原创粉丝点击