关于获取页面高宽及滚动条距离页面顶部和左侧的长度问题

 

if (document.documentElement && document.documentElement.scrollTop) {
            t = document.documentElement.scrollTop;
            l = document.documentElement.scrollLeft;
            w = document.documentElement.scrollWidth;
            h = document.documentElement.scrollHeight;
} else if (document.body) {
            t = document.body.scrollTop;
            l = document.body.scrollLeft;
            w = document.body.scrollWidth;
            h = document.body.scrollHeight;
}

 

你可能感兴趣的:(距离,滚动条,scrollTop,顶部,documentElement)