页面弹层后禁止底部页面滚动

546 阅读1分钟

此方法只适用于pc端

// 打开弹层时执行下面语句
document.documentElement.style.overflow = "hidden";
// 关闭弹层时执行下面语句
document.documentElement.style.overflow = "auto";