随笔 - 6, 文章 - 4, 评论 - 0, 引用 - 0
数据加载中……

iframe 自适应高度宽度 ie7

function reSetIframe(){

    var iframe = document.getElementById("iframe1");

    try{

        var bHeight = iframe.contentWindow.document.body.scrollHeight;

        var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;


        var bWidth= iframe.contentWindow.document.body.scrollWidth;

        var dWidth=iframe.contentWindow.document.documentElement.scrollWidth;

        var height = Math.max(bHeight, dHeight);

        var width= Math.max(bWidth, dWidth);

        iframe.height =  height;

        iframe.width=width;

    }catch (ex){}

}


<iframe name='iframe1' id='ifrme1' onload="reSetIframe()" frameborder="0" scrolling="no"  src="<%=basePath %>pages/blank.htm"></iframe>


他奶奶的 找了半天 才找到 先记下 



posted on 2010-03-10 23:32 小石~~ 阅读(550) 评论(0)  编辑  收藏 所属分类: javascript笔记


只有注册用户登录后才能发表评论。


网站导航: