移动端点击弹窗后禁止页面滑动

/禁止滑动/
stop() {
document.documentElement.style.position = 'fixed';
document.body.style.overflow = 'hidden';
},
/取消滑动限制/
move() {
document.documentElement.style.position = 'static';
document.body.style.overflow = '';
},

posted @ 2020-11-17 16:10  然然初心未改  阅读(171)  评论(0编辑  收藏  举报