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框架调用高度自适应方法。