帝国cms模板仿站 iframe框架调用高度自适应方法

帝国CMS教程

<iframe frameborder="0" src="http://www.daixiao360.cn/" frameborder="0" id="test" onload="this.height=100" scrolling="no"></iframe><script type="text/javascript">function reinitIframe(){var iframe = document.getElementById("test");try{var bHeight = iframe.contentWindow.document.body.scrollHeight;var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;var height = Math.max(bHeight, dHeight);iframe.height = height;console.log(height);}catch (ex){}}window.setInterval("reinitIframe()", 200);</script>