js 控制iframe 自适应高度

阅读更多



 

function reSetIframe(iframeid){
    var iframe = document.getElementById(iframeid);
    var height = 500;
    try{
        var bHeight = iframe.contentWindow.document.body.scrollHeight;
        var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
        height = Math.max(bHeight, dHeight);
        iframe.height = height;
    }catch (ex){
        height = Math.max(bHeight, dHeight);
        iframe.height = height;
   }
}

 


这个适应于各种浏览器,从ie6 7 8 9 一直到 ff,chrome

调试了很久的ie6一直取不到值,最后发现原因是要设置函数reSetIframe 定时执行,直接执行虽然用onload还是取不到,要延迟一会ie6才能得到height值。

 

 

你可能感兴趣的:(js 控制iframe 自适应高度)