当前位置:   article > 正文

vue 实现 下拉触底事件

vue 实现 下拉触底事件

注册滚动事件
window.addEventListener('scroll', this.onScroll, true)

事件触发

onScroll () {

  let scrollTop = document.documentElement.scrollTop || document.body.scrollTop
  let clientHeight = document.documentElement.clientHeight
  let scrollHeight = document.documentElement.scrollHeight
  if (scrollTop + clientHeight >= scrollHeight) {
    this.findBlogsContentInfo()
  }
},
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/532709
推荐阅读
相关标签
  

闽ICP备14008679号