当滚动条滚动到最底部出发事件:
1 $(window).scroll(function(){ 2 if($(document).height()-$(this).scrollTop()-$(this).height()==0){ 3 getdata(); 4 } 5 });