第一种方法:
复制代码 代码如下:
第二种方法:
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 自适应高度[在IE6 IE7 FF下测试通过] iframe 自适应高度[在IE6 IE7 FF下测试通过]](http://www.mshxw.com/aiimages/31/118475.png)
