iframe自适应主窗体高度

<iframe src="" frameborder="0" style="overflow-y: auto; overflow-x:hidden;" onload="setIframeHeight(this);"></iframe>

  

function setIframeHeight(iframe) {
            if (iframe) {
                iframe.height = document.documentElement.clientHeight - 50;
            }
        };

  

posted @ 2018-04-19 14:07  YuAn'  阅读(182)  评论(0编辑  收藏  举报