我使用php,mysql,ajax和jquery在我的网站上制作了一个无限滚动脚本。但它不适用于手机。我尝试下载无限滚动插件,看看他们如何使它在手机上工作,但我的技能是低到dertemine,这部分对我有用。
这是JS代码。
$(window).scroll(function(){
if($(window).scrollTop() == $(document).height() - $(window).height()){
$.ajax({
url : "load.php?lastv=" + $("img:last").attr('alt'),
success : function(html){
if(html){
$('.display-bg').append(html);
}else{
alert('no more post');
}
}
});
}
});
感谢您的帮助。