jquery阻止默认滑动

        $(".swiper-slide").click(function(){

            var index = imgarr[$(this).index()];
            var content = "";
            $(".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     }

 

转载于:https://www.cnblogs.com/suoking/p/5139828.html

你可能感兴趣的:(jquery阻止默认滑动)