Loading... **1、在mounted生命周期函数注册滚动条事件** ```javascript mounted() { window.addEventListener('scroll', this.windowScroll) } ``` **2、在methods方法里使用** ```javascript methods: { windowScroll() { // 滚动条距离页面顶部的距离 // 以下写法原生兼容 let scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop; console.log(scrollTop); } } ``` **3、实例销毁之前,解绑事件** ```javascript beforeDestroy() { window.removeEventListener('scroll', this.windowScroll) } ``` Last modification:September 5, 2023 © Allow specification reprint Support Appreciate the author AliPayWeChat Like 1 如果觉得我的文章对你有用,请随意赞赏
One comment
文字如刀,剖开表象直抵本质。