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

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

 (1)触摸后不产生事件

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

 (2)body不出现滚动条

$("body,.main").height($(window).height()).css({
  "overflow-y": "hidden"
});
posted @ 2016-12-31 14:46  huangenai  阅读(6549)  评论(0编辑  收藏  举报