jquery阻止默认滑动

时间:2024-01-20 00:03:08
        $(".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);
});
     function foo(e){
e.preventDefault();
}