美文网首页
获取滚动条位置

获取滚动条位置

作者: Gaochengxin | 来源:发表于2017-10-23 15:01 被阅读12次

function ScollPostion() {
var t, l, w, h;
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;
}
return {
top: t,
left: l,
width: w,
height: h
};
}

相关文章

网友评论

      本文标题:获取滚动条位置

      本文链接:https://www.haomeiwen.com/subject/ldrauxtx.html