首页 > 其他分享 >scroll事件监听不生效

scroll事件监听不生效

时间:2022-11-08 19:14:26浏览次数:41  
标签:addEventListener 监听 height window 生效 100vh scroll

vue使用window.addEventListener('scroll', this.scroll)监听滚动事件不生效

  • window.addEventListener('scroll', this.scroll) 写在mounted里面
  • html,body的高度别限制, 如height: 100% / 100vh,如果要高度设置背景之类的,可以设置min-height: 100vh / 100%
  • 监听事件需要销毁,destroyed() { window.removeEventListener('scroll', this.scroll) }

标签:addEventListener,监听,height,window,生效,100vh,scroll
From: https://www.cnblogs.com/jia-zq/p/16870820.html

相关文章