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

基于滚动条位置判断的简单实例

程序员文章站 2024-01-24 21:46:47
实例如下所示: //获取滚动条距离顶部位置 function getscrolltop() { var scrolltop = 0; if (docum...

实例如下所示:

//获取滚动条距离顶部位置
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);
}
//判断滚动条是否达到底部
getscrolltop() + getclientheight() == getscrollheight()

以上这篇基于滚动条位置判断的简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。