$(window).scroll(function(){
var scrollTop=$(this).scrollTop();
var scrollHeight=$(document).height();
var windowHeight=$(this).height();
if(scrollTop+windowHeight==scrollHeight){
alert("到底了!");
} });
2022-12-19 12:02:36
$(window).scroll(function(){
var scrollTop=$(this).scrollTop();
var scrollHeight=$(document).height();
var windowHeight=$(this).height();
if(scrollTop+windowHeight==scrollHeight){
alert("到底了!");
} });