美文网首页
iframe高度自适应

iframe高度自适应

作者: Leisure_blogs | 来源:发表于2016-08-23 14:30 被阅读134次
    <style>
    #iframepage {
        min-height: 1000px;
    }
    </style>
    <iframe src="订单列表.html" id="iframepage" name="rightFrame" frameBorder=0 scrolling="no" width="100%" ></iframe>
    <script>
    // iframe自适应高度
        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;
                }
            }
        };
        window.onload = function() {
            setIframeHeight(document.getElementById('iframepage'));
        };
    </script>
    

    相关文章

      网友评论

          本文标题:iframe高度自适应

          本文链接:https://www.haomeiwen.com/subject/dnfnsttx.html