iframe自适用高度代码

有不少wBox的用户反映iframe时候不可以自动撑开高度,今天在无意中看到了司徒正美的一片关于iframe自适用高度的js代码,感觉不错,转载来了。


var adjustIframe = function (id) {
    var iframe = document.getElementById(id)
    var idoc = iframe.contentWindow && iframe.contentWindow.document || iframe.contentDocument;
    var callback = function () {
        var iheight = Math.max(idoc.body.scrollHeight, idoc.documentElement.scrollHeight); //取得其高
        iframe.style.height = iheight + "px";
    }
    if (iframe.attachEvent) {
        iframe.attachEvent("onload", callback);
    } else {
        iframe.onload = callback
    }
}

HTML代码如下所示:

`html”><iframe id=”js_sub_web” width=”80%” frameborder=”0” scrolling=”no” allowTransparency=”true” src=”http://www.cnblogs.com/rubylouvre/archive/2009/09/15/1566722.html

使用代码:

```javascript
window.onload = function(){
     adjustIframe("js_sub_web");
}

推荐几篇关于Iframe的文章:

  1. 再谈Iframe的问题
  2. 解决IE6 select z-index无效,遮挡div的bug
  3. 使用JavaScript在IE和Firefox下进行iframe的DOM操作
  4. 用document.domain+iframe实现Ajax跨子域
  5. 关于Ajax在浏览器中产生前进后退的实现方法