弹出遮罩层后禁止滚动效果

弹出遮罩层后,手指在手机上上下滑动 遮罩层下的页面出现滑动。下面代码解决这个问题

 (1)触摸后不产生事件

//遮罩层禁止滚动
 $('.searbox_mask_byInteg').bind("touchmove", function (e) {
                e.preventDefault();
});

 (2)body不出现滚动条

$("body,.main").height($(window).height()).css({
  "overflow-y": "hidden"
});
原文地址:https://www.cnblogs.com/huangenai/p/6236426.html