现在的位置: 首页 > 综合 > 正文

//iframe自适应高度[在IE6 IE7 FF下测试通过]

2014年11月26日 ⁄ 综合 ⁄ 共 517字 ⁄ 字号 评论关闭

js code:
//iframe自适应高度[在IE6 IE7下测试通过]
function reSetIframe(){
    var iframe = document.getElementById("iframeId");
    try{
        var bHeight = iframe.contentWindow.document.body.scrollHeight;
        var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
        var height = Math.max(bHeight, dHeight);
        iframe.height =  height;
    }catch (ex){}
}

html:
<iframe src="" id="weather" name="weather"  width="278" onload="reSetIframe()" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" border="0" framespacing="0"> </iframe>

抱歉!评论已关闭.