请大家帮我向下滚动时如何拨打Ajax电话
var no=1; $(window).scroll(function () { if(no==1) { if ($(window).height() + $(window).scrollTop() == $(document).height()) { no=2; $.ajax({ type: "POST", url: "request.php", data: datas, cache: false, success: function(html){ } }); } } });
当用户到达页面末尾时,这会进行ajax调用。
您可以指定其发生的高度。