滚动条滑到底部,加载更多

$(window).scroll(function(){
  var scrollTop = $(this).scrollTop();
  var scrollHeight = $(document).height();
  var windowHeight = $(this).height();
  if(scrollTop + windowHeight == scrollHeight){
    alert("已经到最底部了!");
  }
});
原文地址:https://www.cnblogs.com/xkcp008/p/4484850.html