mounted(){
this.tabScroll();
},
methods:{
tabScroll(){
window.addEventListener("scroll",function () {
let t = document.documentElement.scrollTop || document.body.scrollTop;
console.log(t);
let tabBar = document.getElementById("tabBar");
if( t >= 88 ) {
tabBar.style.cssText="position:fixed;top:0;z-index:999";
} else {
tabBar.style.position="relative";
}
});
},
},
给vue组件绑定scroll
事件,如果直接在 mounted
钩子中写window.addEventListener("scroll",handleFun()),
则页面并不会执行scroll
事件,仅仅在页面打开的一刹那生效,所以把绑定事件的方法写在methods
中,可以正擦汗那个监听滚动,但是试了好几种销毁方式都不可行,求大神解惑~~!
destroyed(){
window.removeEventListener("scroll",function () {
let t = document.documentElement.scrollTop || document.body.scrollTop;
let tabBar = document.getElementById("tabBar");
if( t >= 88 ) {
tabBar.style.cssText="position:fixed;top:0;z-index:999";
} else {
tabBar.style.position="relative";
}
});
}
destroyed()
中直接这么写不管用,如果把里面的函数单独写成methods中的一个方法,写到删除事件中,也一样不生效。
handleFun
的话,得把handleFun
写在method
中window.addEventListener("scroll",this.handleFun)
和window.removeEventListener("scroll",this.handleFun)
,而不是window.addEventListener("scroll",this.handleFun())
和window.removeEventListener("scroll",this.handleFun())
第二个参数应该是一个function,而不是执行它。