欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决ifream自适应问题

程序员文章站 2024-03-21 08:24:10
...

用js实现ifream自适应

获取ifream的window对象-contentWindow

    function autoHeight(iframe) {
        if (iframe) {
            var iframeWin = iframe.contentWindow;
            if (iframeWin.document.body) {
                iframe.height = iframeWin.document.documentElement.scrollHeight;
                iframe.width = document.documentElement.clientWidth;
            }
        }
    }
    function changeFrame() {
        var f = document.getElementById("myiframe");
        autoHeight(f);
    }
    window.onresize = function () {
        changeFrame();
    }
        <iframe  id="myiframe" scrolling="no"  style="border: 0px;" width = "100%" onload = "changeFrame()" src = "path"/>
        </iframe>