var stop=true;
$(window).scroll(function(){
totalheight = parseFloat($(window).height()) + parseFloat($(window).scrollTop());
if($(document).height() <= totalheight){
if(stop==true){
stop=false;
//下滑到底后要执行的代码


stop=true;
}
}
});

相关文章:

  • 2022-12-23
  • 2021-10-08
  • 2021-12-25
  • 2022-12-23
  • 2021-06-16
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-06
  • 2021-06-02
  • 2022-12-23
相关资源
相似解决方案