使用JavaScript怎么实现滑动加载数据

  介绍

本篇文章给大家分享的是有关使用JavaScript怎么实现滑动加载数据,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。

具体如下:

//滑动   function  getScrollTop ()   {   ,var  scrollTop =, 0;   ,if  (document.documentElement ,,, document.documentElement.scrollTop), {   ,,scrollTop =, document.documentElement.scrollTop;   }才能else  if  (document.body), {   时间=scrollTop 才能;document.body.scrollTop;   ,,}   return 才能;scrollTop;   }//获取当前可视范围的高度   function  getClientHeight ()   {   ,var  clientHeight =, 0;   ,if  (document.body.clientHeight ,,, document.documentElement.clientHeight), {   ,,clientHeight =, Math.min (document.documentElement.clientHeight document.body.clientHeight也);   ,}else  {   ,,clientHeight =, Math.max (document.documentElement.clientHeight document.body.clientHeight也);   ,}   ,,return  clientHeight;   }//获取文档完整的高度   function  getScrollHeight ()   {   ,,return  Math.max (document.body.scrollHeight, document.documentElement.scrollHeight);   }//绑定事件   时间=window.onscroll  function  ()   {   ,if  (getScrollTop (), +, getClientHeight (),==, getScrollHeight ()), {//dosomething才能   ,}   }

以上就是使用JavaScript怎么实现滑动加载数据,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注行业资讯频道。

使用JavaScript怎么实现滑动加载数据