我有以下代码,它可以在桌面浏览器中运行,但是在移动设备中,它在滚动时不起作用,仅在停止时才起作用。 如何解决这个问题?
$(document).ready(function(){
$(window).scroll(function() {
var loadMore = $("#load-more-videos");
if($(window).scrollTop() + $(window).height() ==
$(document).height())
loadMore.click();
});
});
答案 0 :(得分:0)
试试这个
$(document).on('touchstart touchend touchmove', function(){
$(window).trigger('scroll');
});