欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JS简单实现滑动加载数据的方法示例

程序员文章站 2022-07-06 20:18:51
本文实例讲述了js简单实现滑动加载数据的方法。分享给大家供大家参考,具体如下: //滑动 function getscrolltop() { var sc...

本文实例讲述了js简单实现滑动加载数据的方法。分享给大家供大家参考,具体如下:

//滑动
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.body.clientheight, document.documentelement.clientheight);
 }else {
   clientheight = math.max(document.body.clientheight, document.documentelement.clientheight);
 }
   return clientheight;
}
//获取文档完整的高度
function getscrollheight()
{
   return math.max(document.body.scrollheight, document.documentelement.scrollheight);
}
//绑定事件
window.onscroll = function ()
{
 if (getscrolltop() + getclientheight() == getscrollheight()) {
  //dosomething
 }
}

更多关于javascript相关内容感兴趣的读者可查看本站专题:《javascript切换特效与技巧总结》、《javascript查找算法技巧总结》、《javascript错误与调试技巧总结》、《javascript数据结构与算法技巧总结》、《javascript遍历算法与技巧总结》及《javascript数学运算用法总结

希望本文所述对大家javascript程序设计有所帮助。