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

判断滚动条滑到底部触发事件(实例讲解)

程序员文章站 2022-03-27 08:21:44
实例如下所示: $(document).on("scroll", function () { //真实内容的高度 var pageheight = mat...

实例如下所示:

$(document).on("scroll", function () {
 //真实内容的高度
 var pageheight = math.max(document.body.scrollheight, document.body.offsetheight);
 //视窗的高度
 var viewportheight = window.innerheight || document.documentelement.clientheight || document.body.clientheight || 0;
 //隐藏的高度
 var scrollheight = window.pageyoffset || document.documentelement.scrolltop || document.body.scrolltop || 0;
 //判断加载视频,文章,回答,医生
 if(pageheight - viewportheight - scrollheight <=0){
  //事件
 }
});

以上这篇判断滚动条滑到底部触发事件(实例讲解)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。