ajax无限下拉基本框架 实际请根据需求
$(window).scroll(function () {
if ($(document).scrollTop() + $(window).height() >= $(document).height()) {
$.ajax({
url:url,type:"post",data:{"data":data},dataType: "json",success:function(data){
}
});
}
});
$(document).ready(function(){
$("html").scrollTop(4000);
scrollTo (0,document.height ||document.body.style.height);
});