<iframe src="..." ></iframe>
<script>
function changeFrameHeight() {
var ifm = document.getElementById("iframe");
var iframeWindow = ifm.contentWindow;
var body = ifm.contentWindow.document.body;
if (iframeWindow.document.readyState == "complete") {
var iframeWidth, iframeHeight;
body.style.cssText = "word-wrap:break-word;overflow-x:auto; overflow-y:hidden;";
//获取Iframe的内容实际宽度
iframeWidth = iframeWindow.document.documentElement.scrollWidth;
}
window.onresize = function () {
changeFrameHeight();
}
window.onload = function () {
changeFrameHeight();
}
</script>