jq判断滚动条到页面底部时间:2021-03-05 21:22:51$(window).scroll(function(){ if($(window).scrollTop() +$(window).height()>$("body").height()/2){ alert("you are in the bottom"); } }); 注:使用滚动分页加载,页面容器(样式中不要包含overflow-y:auto/overflow:scroll且不用给容器高度)