美文网首页
jQuery上拉加载

jQuery上拉加载

作者: MGLMONSTER | 来源:发表于2019-10-18 17:47 被阅读0次
var timers = null;

var page = 1;

$(window).scroll(function() {

  //当时滚动条离底部60px时开始加载下一页的内容

  if (($(window).height() + $(window).scrollTop() + 60) >= $(document).height()) {

    clearTimeout(timers);

    timers = setTimeout(function() {

      page++;

      console.log("第" + page + "页");

      LoadingDataFn();

    }, 300);

  }

});

相关文章

网友评论

      本文标题:jQuery上拉加载

      本文链接:https://www.haomeiwen.com/subject/lmlwmctx.html