vue页面弹出遮罩层时禁止页面滚动

bodyScroll(event) {

     event.preventDefault()

},

/**禁止页面滑动*/

noSliding() {

     document.body.style.overflow = 'hidden';

     document.addEventListener('touchmove', this.bodyScroll, false);//禁止页面滑动

},

/**允许页面滑动*/

sliding() {

      document.body.style.overflow = '';//出现滚动条

      document.removeEventListener('touchmove', this.bodyScroll, false);

},

二手闲置小程序 免费信息发布系统功能源码(小程序+php后台管理)

https://blog.csdn.net/MPQ1314/article/details/87162363

电商商城小程序 小程序+php后台管理系统功能源码

https://blog.csdn.net/MPQ1314/article/details/103723983

发布了40 篇原创文章 · 获赞 22 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/MPQ1314/article/details/100539883