<iframe id="iframe" onLoad="AutoFit();" frameborder="0" scrolling="no" src="http://www.cnblogs.com"> </iframe>
JQuery代码:
function AutoFit() { var ifm = document.getElementById("iframe"); var subWeb = document.frames ? document.frames["article_frame"].document : ifm.contentDocument; if (ifm != null && subWeb != null) {
$("#iframe").css({ "width": subWeb.body.scrollWidth + "px" });
$("#iframe").css({ "height": subWeb.body.scrollHeight + "px" });
}
}