swipeleft不工作,哪个jquery?

时间:2015-02-10 09:04:45

标签: javascript jquery html

如果我在HTML中使用它,那么swipeleft就不起作用了。如果我改为1.4.3,它正在工作,但后来我的顶部导航栏出现问题......

你怎么解释这个? (我是新手)

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="scripts/steps.js"></script>

<script src="https://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.5/jquery.mobile.min.js"></script>





$('#list li').on("swipeleft",function(){   alert('swipeleft');


      var ind =  $(this).index()    ;  if (ind +1 < count ) {  
        $(this).parent('ul').animate({marginLeft: (-(ind + 1 ) * theWidth)}, 500);}

    });

      $('#list li').on("swiperight",function(){
      var ind =  $(this).index()    ; if (ind > 0 ) { 
        $(this).parent('ul').animate({marginLeft: (-(ind -1) * theWidth)}, 500);}

    });

0 个答案:

没有答案