使iframe自适应内含网页的高度和宽度

来源:互联网 发布:保险行业最新数据 编辑:程序博客网 时间:2024/05/22 07:47

 /*iframe自适应内含网页高度和宽度*/


function reinitIframe(){
    var iframe = document.getElementById("iframe_main");
    try{
        iframe.height =  iframe.contentWindow.document.documentElement.scrollHeight;
        iframe.width =  iframe.contentWindow.document.documentElement.scrollWidth;
    }catch (ex){}
}
window.setInterval("reinitIframe()", 200);

原创粉丝点击