将此添加到您的
<head>部分:
<script> function resizeIframe(obj) { obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px'; }</script>并将您的iframe更改为此:
<iframe src="..." frameborder="0" scrolling="no" onload="resizeIframe(this)" />



