document.body.clientHeight:body对象的高度
document.documentElement.clientHeight:指可见区域的高度
获取元素中滚动条的垂直偏移可以写成:
var top = document.documentElement.scrollTop || document.body.scrollTop;
document.body.clientHeight和document.documentElement.clientHeight区别
时间: 2024-10-08 10:52:30