美文网首页
vue 监听滚动条

vue 监听滚动条

作者: 兜兜里冒糖糖 | 来源:发表于2019-04-02 16:23 被阅读0次
     created() {
        window.onscroll = () => {
          var scrollTop =
            document.documentElement.scrollTop || document.body.scrollTop;
          var windowHeight =
            document.documentElement.clientHeight || document.body.clientHeight;
          var scrollHeight =
            document.documentElement.scrollHeight || document.body.scrollHeight;
          if (scrollHeight ==( scrollTop - windowHeight )) {
            alert('已经滚动到底部了')
          }
        };
      },
    

    相关文章

      网友评论

          本文标题:vue 监听滚动条

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