首页 > Web开发 > 详细

jquery组织默认滑动

时间:2016-01-18 17:29:09      阅读:270      评论:0      收藏:0      [点我收藏+]
        $(".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     }

 

jquery组织默认滑动

原文:http://www.cnblogs.com/suoking/p/5139828.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!