手记

页面到底部加载更多

  window.addEventListener('scroll',()=>{
    let scrollTop = document.documentElement.scrollTop||document.body.scrollTop ;
    let clientHeight = document.documentElement.clientHeight || document.body.clientHeight ;
    let scrollHeight = document.documentElement.scrollHeight||document.body.scrollHeight ;
    if(Math.round(scrollTop+clientHeight) == scrollHeight){
          $('.load-more').click();
      } 
  });


1人推荐
随时随地看视频
慕课网APP