禁止遮罩层下方内容滚动的问题

解决方案

在打开遮罩层加入:

$("body").css({"overflow":"hidden","position":"fixed"}) 

在关闭遮罩层加入:

$("body").css({"overflow":"visible","position":"relative"})
参考链接:
  1. https://blog.csdn.net/qq_42661904/article/details/104940218
  2. https://blog.csdn.net/weixin_40785245/article/details/80520524?utm_medium=distribute.pc_relevant_t0.none-task-blog-2%7Edefault%7EBlogCommendFromMachineLearnPai2%7Edefault-1.control&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-2%7Edefault%7EBlogCommendFromMachineLearnPai2%7Edefault-1.control

你可能感兴趣的:(禁止遮罩层下方内容滚动的问题)