优晟SEO

您现在的位置是:首页 > CMS教程 > 帝国cms > 正文

帝国cms

iframe框架调用高度自适应方法

佚名 2024-08-20帝国cms
以下代码加入到你想加的帝国cms模板即可<iframe frameborder="0" src="http://www.daixiao360.cn/" class="iframe" frameborder="0" id="test" onload="this.height=100" width="762px"  scrolling="no"&……

iframe框架调用高度自适应方法

以下代码加入到你想加的帝国cms模板即可

<iframe frameborder="0" src="http://www.daixiao360.cn/" class="iframe" frameborder="0" id="test" onload="this.height=100" width="762px"  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>