目前我在我的副项目上实现了无限滚动,它在桌面的 chrome 浏览器上工作得很好。但是,当您转换到移动 chrome 浏览器时,当您到达屏幕底部时,脚本将无法运行。
$(window).scroll(function() {
if($(window).scrollTop() + $(window).height() == $(document).height()) {
alert($(document).height());
}
});
谢谢大家的帮助!
目前我在我的副项目上实现了无限滚动,它在桌面的 chrome 浏览器上工作得很好。但是,当您转换到移动 chrome 浏览器时,当您到达屏幕底部时,脚本将无法运行。
$(window).scroll(function() {
if($(window).scrollTop() + $(window).height() == $(document).height()) {
alert($(document).height());
}
});
谢谢大家的帮助!