码迷,mamicode.com
首页 > 其他好文 > 详细

iframe高度自适应

时间:2015-11-07 10:54:57      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:iframe 高度自适应

<iframe id="win" height="140" marginheight="0" src="http://www.sdfao.gov.cn/lm/front/main.jsp?sysid=004" frameborder="0" width="100%" name="win" marginwidth="0" scrolling="no" align="top" onload="javascript:document.getElementById(‘win‘).style.height = win.document.body.scrollHeight + 20 + ‘px‘;"></iframe>
<script type="text/Javascript">
 function reinitIframe(){
 var iframe = document.getElementById("win");
 try{
 var bHeight = iframe.contentWindow.document.body.scrollHeight;
 var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
 var height = Math.max(bHeight, dHeight);
 iframe.height = height;
 }catch (ex){}
 }
 window.setInterval("reinitIframe()", 200);
</script>

iframe高度自适应

标签:iframe 高度自适应

原文地址:http://cag2050.blog.51cto.com/1009647/1710526

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!