$(".swiper-slide").click(function(){ var index = imgarr[$(this).index()]; var content = "<img class='a' src="+index+" />"; $(".mengceng").show(); $(".model").html(content).show(); $("body").bind("touchmove", foo); }); $(".mengceng").click(function(){ $(".mengceng").hide(); $("body").unbind("touchmove", foo); });
1 function foo(e){ 2 e.preventDefault(); 3 }