JavaScript判断页面滚动到底部

JavaScript实现方法:

jQuery实现方法: 

如果用jquery来实现的话就更简单了

$(window).scroll(function(){
  var scrollTop = $(this).scrollTop();
  var scrollHeight = $(document).height();
  var windowHeight = $(this).height();
  if(scrollTop + windowHeight == scrollHeight){
    alert("you are in the bottom");
  }
});

 

你可能感兴趣的:(前端)