iframe框架調用高度自適應方法_帝國Cms教程
教程Tag:暫無Tag,歡迎添加,賺取U幣!
iframe框架調用高度自適應方法
有需要的可以記錄下來,希望可以幫助到你。
- <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>
相關帝國Cms教程:
- 相關鏈接:
- 教程說明:
帝國Cms教程-iframe框架調用高度自適應方法。