如何在移动页面的末尾自动触发 ajax 请求(使用 jquery 和 jquery mobile)?编码
$(document).bind('pageshow #item_search', function(){
$('#content_table').scroll(function() {
if($(window).scrollTop() + $(window).height() == $(document).height()) {
//ajax
alert("end of page");
}
});
});
在台式电脑上很好用,但在我的手机上什么也没做...