vue中原生js获取滚动条高度

2020-07-09  本文已影响0人  养樂多_566c

话不多说,直接上代码

mounted: function() {
    window.addEventListener('scroll',this.rollingheight,true)
},
methods: {
    rollingheight:function(e){
        console.log(window.pageYOffset)
    },
},

上一篇 下一篇

猜你喜欢

热点阅读