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

iframe自适应宽度高度

时间:2015-07-13 15:39:08      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:

html

1 <iframe src="index.html" id="iframepage" frameborder="0" scrolling="no" onLoad="iFrameHeight()"></iframe>

script

 1 <script>
 2     function iFrameHeight() {
 3         var ifm = document.getElementById("iframepage");
 4         var subWeb = document.frames ? document.frames["iframepage"].document : ifm.contentDocument;
 5         if (ifm != null && subWeb != null) {
 6             ifm.height = subWeb.body.scrollHeight;
 7             ifm.width = subWeb.body.scrollWidth;
 8         }
 9     }
10 </script>

 

iframe自适应宽度高度

标签:

原文地址:http://www.cnblogs.com/pzpzpop/p/4642688.html

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