这里的按钮从数据库加载数据.工作良好.
如何在向下滚动到页面底部时自动单击此按钮.只是无限滚动.
我应该使用窗口滚动功能.如果是,那么如何在此代码中执行此操作.
我试过在这个函数中粘贴ajax代码但是没有工作.
编辑: 1.当我把Ajax放在scroll函数中时,它在getmore.php中显示mysql错误.2.如果我在滚动功能中放置了具有单击功能的按钮类,那么它会发射太快以至于多次加载相同的帖子.
$(document).scroll(function(){
if ($(window).scrollTop() + $(window).height() >= $(document).height()) {
}
});
$('body').on('click','.getmore',function(){
var lastelement = $(this ).attr('id');
$.ajax({
type : 'GET',
url : 'getmore.php',
data : 'lastelement='+lastelement,
beforesend : function(){
$('.getmore').html('loading....');
},
success: function(data){
$('.getmore').remove();
$('#recs') .append(data) ;
}
});
});
//posts goes here