jquery滚动事件

时间:2021-08-24 11:05:22

滚动到一定高度:

$(window).scroll(function(){
var scrollTop = $(document).scrollTop();
if (scrollTop >= && scrollTop <= ) {
//alert('高度达到 2000px-3000px之间了!');
}
});

// 滚动到底部

var $window = $(window);
var $document = $(document);
$window.scroll(function () {
if ($document.scrollTop() + $window.height() >= $document.height()) {
//滚动到页面底部了
} else {
//还未到底部
}
});