js 弹层下面的body禁止滚动

当弹出出现的时候,设置body的position为fixed,并设置overflow为hidden

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

当弹层取消

document.body.style.position = 'relative';
document.body.style.overflow = 'auto';

猜你喜欢

转载自blog.csdn.net/guxiansheng1991/article/details/80503497