首先给定一块区域
<iframe id = 'iframeDetail' align="center" width="1330" onLoad="reinitIframe()" src=""
frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="no">
</iframe>
第一种方法:
function iFrameHeight() {
var ifm= document.getElementById("iframeDetail");
var subWeb = document.frames ? document.frames["iframeDetail"].document : ifm.contentDocument;
if(ifm != null && subWeb != null) {
ifm.height = subWeb.body.scrollHeight;
}
}
第二种方法:
function reinitIframe(){
var iframe = document.getElementById("iframeDetail");
try{
var bHeight