标签:box win rbo prevent color overflow 效果 efault 问题
弹出遮罩层后,手指在手机上上下滑动 遮罩层下的页面出现滑动。下面代码解决这个问题
(1)触摸后不产生事件
//遮罩层禁止滚动 $(‘.searbox_mask_byInteg‘).bind("touchmove", function (e) { e.preventDefault(); });
(2)body不出现滚动条
$("body,.main").height($(window).height()).css({ "overflow-y": "hidden" });
标签:box win rbo prevent color overflow 效果 efault 问题
原文地址:http://www.cnblogs.com/huangenai/p/6236426.html