美文网首页
判断页面滚动到最底部

判断页面滚动到最底部

作者: 杉虎 | 来源:发表于2019-08-01 17:09 被阅读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){
        //写需要执行的代码
    }   
}

相关文章

网友评论

      本文标题:判断页面滚动到最底部

      本文链接:https://www.haomeiwen.com/subject/nmscdctx.html