织梦园模板网提供云优cms模板,pbootcms模板,Wordpress主题模板等各类企业新闻资讯网站模板下载服务。织梦园网站模板交流群
用户名:
密码:
注册
注册后享受折扣价

iframe 根据内容自适应高度-终极解决方案

织梦园模板 / 2018-05-25 / 收藏
在主页面 iframe onLoad 时间里面写

    function iframeLoad()  
    {  
        document.getElementById("iframe").height=0;  
        document.getElementById("iframe").height=document.getElementById("iframe").contentWindow.document.body.scrollHeight;  
    }

下面是示例代码

<iframe width='100%' id="myiframe"frameborder="0" scrolling="no" onload="changeFrameHeight()" frameborder="0" src="/style/banner/index.html"></iframe>
<script>
function changeFrameHeight(){
    document.getElementById("myiframe").height=0; 
    document.getElementById("myiframe").height=document.getElementById("myiframe").contentWindow.document.body.scrollHeight; 
}
window.onresize=function(){ 
     changeFrameHeight(); 
}
</script>

相关辅助文档

收缩