vue监听scroll事件
很小的功能,记录一下mounted() {window.addEventListener('scroll', this.handleScroll, true)},methods: {handleScroll: function() {console.log(window.scrollY)}}
·
很小的功能,记录一下
mounted() {
window.addEventListener('scroll', this.handleScroll, true)
},
methods: {
handleScroll: function() {
console.log(document.documentElement.scrollTop || document.body.scrollTop)
}
}
更多推荐
已为社区贡献2条内容
所有评论(0)