$(window).scroll(function() {
                  var mayLoadContent = $(window).scrollTop() >= $(document).height() - $(window).height();
                  var docHeight = $(document).height();
                  if (mayLoadContent) {
                      if (!Nodes[N_wrap].hasClass(CLs_isLoading)) {
                          Nodes[N_wrap].addClass(CLs_isLoading);
                      }
                      self.goToNextPage(); //跳转到下一页的方法
                  }
});

相关文章:

  • 2021-09-15
  • 2021-08-21
  • 2021-10-16
  • 2021-10-20
  • 2021-10-20
  • 2018-10-09
  • 2021-11-07
  • 2022-01-17
猜你喜欢
  • 2021-10-25
  • 2021-08-09
  • 2019-01-31
  • 2021-10-25
  • 2021-09-15
  • 2021-09-15
相关资源
相似解决方案