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

IFREAM 高度自适应 博客分类: HTML ifream自适应 

程序员文章站 2024-03-25 21:10:34
...

不支持跨域

<iframe src="http://www.baidu.com" frameborder="0" width="100%" scrolling="no"  onload="setIframeHeight(this)" id="pframe" name="pframe"></iframe>

 

<script>

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;
        }
    }
    };

</script>

 

参考地址:

http://caibaojian.com/iframe-adjust-content-height.html

相关标签: ifream 自适应