方法1:
<iframe name="iframe" src="0206showOperationLog.jsp" height="0" frameborder="0" scrolling="no" width="800" onload = "height = document.frames(this.name).document.body.scrollHeight">
</iframe>
height="0"的作用為開始沒有數據時 iframe不顯示
方法2:
<iframe name="iframe" src="0206showOperationLog.jsp" height="0" frameborder="0" scrolling="no" width="800" onload = "height = document.frames(this.name).document.body.scrollHeight">
</iframe>
height="0"的作用為開始沒有數據時 iframe不顯示
方法2:
<iframe id="frame_content" src="iframe_b.html" scrolling="no" frameborder="0" onload="this.height=100"></iframe> <script type="text/javascript"> function reinitIframe(){ var iframe = document.getElementById("frame_content"); 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){} } window.setInterval("reinitIframe()", 200); </script>