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

JS 获取网页内容高度 和 网页可视高度 支持IE 6789 Firefox Chrome 【转】

时间:2015-04-01 16:53:10      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

function getClientHeight()
{
    //可见高
    var clientHeight=document.body.clientHeight;//其它浏览器默认值
    if(navigator.userAgent.indexOf("MSIE 6.0")!=-1)
    {
        clientHeight=document.body.clientHeight;
    }
    else if(navigator.userAgent.indexOf("MSIE")!=-1)
    {
        //IE7 IE8
        clientHeight=document.documentElement.offsetHeight
    }

    if(navigator.userAgent.indexOf("Chrome")!=-1)
    {
        clientHeight=document.body.scrollHeight;
    }

    if(navigator.userAgent.indexOf("Firefox")!=-1)
    {
        clientHeight=document.documentElement.scrollHeight;
    }
    return clientHeight;
}

//获得网页内容高度
function getContentHeight()
{
    //可见高
    var ContentHeight=document.body.scrollHeight;//其它浏览器默认值

    if(navigator.userAgent.indexOf("Chrome")!=-1)
    {
        ContentHeight= document.body.clientHeight;
    }

    if(navigator.userAgent.indexOf("Firefox")!=-1)
    {
        ContentHeight=document.body.offsetHeight;
    }
    return ContentHeight;
}

 

JS 获取网页内容高度 和 网页可视高度 支持IE 6789 Firefox Chrome 【转】

标签:

原文地址:http://www.cnblogs.com/Shane-Chow/p/4384100.html

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