码迷,mamicode.com
首页 > Web开发 > 详细

iframe自适应高度js代码

时间:2015-06-11 10:55:32      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

 1 <script type="text/javascript">
 2         function SetWinHeight(obj) {
 3             var win = obj;
 4             if (document.getElementById) {
 5                 if (win && !window.opera) {
 6                     if (win.contentDocument && win.contentDocument.body.offsetHeight)
 7                         win.height = win.contentDocument.body.offsetHeight;
 8                     else if (win.Document && win.Document.body.scrollHeight)
 9                         win.height = win.Document.body.scrollHeight;
10                 }
11             }
12         }
13     </script>
14 
15 id=win  name=win

 

iframe自适应高度js代码

标签:

原文地址:http://www.cnblogs.com/jiaxiang/p/4568172.html

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