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

iframe用js设定自定义高度

时间:2015-01-19 18:37:57      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

 

JS代码

function SetWinHeight(obj){
    var win=obj;
    if (document.getElementById){
        if (win && !window.opera){
            if (win.contentDocument && win.contentDocument.body.offsetHeight){
          win.height = win.contentDocument.body.offsetHeight;
            }
            else if(win.Document && win.Document.body.scrollHeight){
                win.height = win.Document.body.scrollHeight;
            }
        }
    }
}

 

HTML代码

<iframe width="100%" height="500" id="win" name="win" onload="Javascript:SetWinHeight(this)" frameborder="0" scrolling="no" src="default.html"></iframe>

 

iframe用js设定自定义高度

标签:

原文地址:http://www.cnblogs.com/cnsevennight/p/4234344.html

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