很小的功能,记录一下
mounted() {
window.addEventListener('scroll', this.handleScroll, true)
},
methods: {
handleScroll: function() {
console.log(document.documentElement.scrollTop || document.body.scrollTop)
}
}
博客记录了Vue监听Scroll事件这一功能,虽表述为小功能,但体现了在前端开发中对特定事件监听的应用。
很小的功能,记录一下
mounted() {
window.addEventListener('scroll', this.handleScroll, true)
},
methods: {
handleScroll: function() {
console.log(document.documentElement.scrollTop || document.body.scrollTop)
}
}
1887

被折叠的 条评论
为什么被折叠?
