我在 jquery 中有这段代码,它的编写方式是当我向下滚动鼠标时,会从 db 中获取下一组记录并显示出来。最初我的页面显示 25 条记录,当我向下滚动下一个 15 条记录时,r 从 db 中获取。我的问题是,每当调用滚动功能时,我都无法设置计数器并增加计数器。而且每当我向下滚动时,都会显示相同的 15 条记录。这是我的代码...
$(window).on('scroll',function(){
if($(window).scrollTop()==($(document).height()-$(window).height())){
$.ajax({
type: 'POST',
url: 'getdata.php',
success: function(nxt_data){
$('#data').append(nxt_data);
}
});
}
});