素材巴巴 > 程序开发 >

Vue获取滚动条的滚动距离

程序开发 2023-09-16 21:20:27
// 自动触发
 mounted: function () {window.addEventListener("scroll", this.handleScroll, true);
 },
 // 页面销毁前
 beforeDestroy: function () {window.removeEventListener("scroll", this.handleScroll);
 },
 
 // 获取滚动条的滚动距离
 handleScroll() {console.log(this.$refs.scorll_top.getBoundingClientRect().top);
 },
 

注意这里:ref一定要写在div上,写在组件上面会报错
在这里插入图片描述


标签:

上一篇: AngularJS 依赖注入_前端培训 下一篇:
素材巴巴 Copyright © 2013-2021 http://www.sucaibaba.com/. Some Rights Reserved. 备案号:备案中。