首页 > Web开发 > 详细

js获取屏幕高度

时间:2021-06-03 17:07:48      阅读:22      评论:0      收藏:0      [点我收藏+]
            window.onscroll = function() {
                //变量scrollTop是滚动条滚动时,距离顶部的距离
                  var scrollTop =
                    document.documentElement.scrollTop || document.body.scrollTop;
                //变量windowHeight是可视区的高度
                  var windowHeight =
                    document.documentElement.clientHeight || document.body.clientHeight; 
                //变量scrollHeight是滚动条的总高度
                  var scrollHeight =
                    document.documentElement.scrollHeight || document.body.scrollHeight; 
                //滚动条到底部的条件
                  if (scrollTop + windowHeight == scrollHeight) {
                    //写后台加载数据的函数
                    // _this.onLoad();
                    console.log(
                      "距顶部" +
                        scrollTop +
                        "可视区高度" +
                        windowHeight +
                        "滚动条总高度" +
                        scrollHeight
                    );
                  }
                };

 

js获取屏幕高度

原文:https://www.cnblogs.com/linuxin/p/14845519.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!