移动端点击弹出模态框禁止页面滑动

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

你可能感兴趣的:(移动端点击弹出模态框禁止页面滑动)