js 监听页面滚动到底部,监听可视区域滚动到底部
全局页面body上的底部监听:
window.onscroll = function(){
var scrollTop = document.documentElement.scrollTop||document.body.scrollTop;
var windowHeight = document.documentElement.clientHeight || document.body.clientHeight;
var scrollHeight = document.documentElement.scrollHeight||document.body.scrollHeight;
if(scrollTop+windowHeight>=scrollHeight){ //考虑到滚动的位置一般可能会大于一点可滚动的高度,所以这里不能用等于
console.log("距顶部"+scrollTop+"可视区高度"+w
共有 0 条评论