设置iframe高度自适应

/*
 * 设置iframe高度自适应
 */
function reinitIframe(){
    var myframe = document.getElementById('myFrame');

    var bHeight = myframe.contentWindow.document.body.scrollHeight;
    var dHeight = myframe.contentWindow.document.documentElement.scrollHeight;
    var height = Math.max(bHeight, dHeight);
    myframe.height = height;

}
window.setInterval("reinitIframe()", 200)

iframe也要有一个默认的高度


你可能感兴趣的:(设置iframe高度自适应)