`
sohighthesky
  • 浏览: 34840 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

iframe高度自适应

阅读更多
实现代码:
<iframe id="frame_content" src="iframe_b.html" frameborder="0" onload="this.height=100"></iframe>
			<!--这里onload不能去掉-->

(function(ifr){
    var b,d,h,t;
    setInterval(function(){
        try {
            b=ifr.contentWindow.document.body.scrollHeight,d=ifr.contentWindow.document.documentElement.scrollHeight;
            h!==(t=b>d?b:d) && (ifr.height=t);//高度改变了才赋值
        }catch(x){}
    },200);
})(document.getElementById("frame_content"))//这里指定iframe的id

来源:
http://ued.koubei.com/?p=243

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics