1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <iframe name="mainFrame" id="mainBodyFrame" src="/main" frameborder="0" scrolling="no" width="100%" height="900px" onload="setIframeHeight(this)"></iframe> <script type="text/javascript">
function setIframeHeight(iframe) { if (iframe) { var iframeWin = iframe.contentWindow || iframe.contentDocument.parentWindow; if (iframeWin.document.body) { iframe.height = iframeWin.document.documentElement.scrollHeight || iframeWin.document.body.scrollHeight; } } };
window.onload = function() { setIframeHeight(document.getElementById('mainBodyFrame')); }; </script>
|