美文网首页
iframe高度自适应并且取消滚动条

iframe高度自适应并且取消滚动条

作者: Smilejpg | 来源:发表于2019-05-31 16:17 被阅读0次

    <iframe src="" width="100%" id="frame" scrolling="no" frameborder=no style="display:none;"></iframe>

    <script type="text/javascript">

        // // iframe高度自适应

        // var ifm= document.getElementById("frame");

    // ifm.height=document.documentElement.clientHeight;

        function setIframeHeight(iframe) {

    if (iframe) {

    var iframeWin = iframe.contentWindow || iframe.contentDocument.parentWindow;

                if (iframeWin.document.body) {

    iframe.height = iframeWin.document.body.scrollHeight;

                }

    }

    }

    $("#frame").each(function (index) {

    var that =$(this);

            (function () {

    setInterval(function () {

    setIframeHeight(that[0])

    }, 200)

    })(that)

    });

    </script>

    相关文章

      网友评论

          本文标题:iframe高度自适应并且取消滚动条

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