当前位置: 代码迷 >> 综合 >> vue 监听下拉框 到底事件
  详细解决方案

vue 监听下拉框 到底事件

热度:78   发布时间:2024-03-09 21:00:59.0

 

下拉框下拉到底之后 去执行点啥

mounted() {let that = this;this.$nextTick(() => {// this.initScroll()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) {//写后台加载数据的函数 一定要用thatthat.getList();}};});},

 

  相关解决方案