移动端滚动穿透问题

.auto{ overflow:hidden; position: fixed;}
$(function(){
	$('.sqjr').click(function(event) {
		$('.touming,.joinBox').show();
		$("body").addClass("auto");
	});
	$('.close').click(function(event) {
		$('.touming,.joinBox').hide();
		$("body").removeClass("auto");
	});	
	$("#cancle-apply").click(function(){
		$('.touming,.joinBox').hide();
		$("body").removeClass("auto");
	});

    //禁止窗体滚动
	/*$('.touming,.joinBox').bind("touchmove",function(e){
         e.preventDefault();
    });*/

})

 

你可能感兴趣的:(移动端)