EasyPaginate与Touchwipe

时间:2013-06-20 12:51:57

标签: jquery jquery-mobile

我想让Touchwipe与EasyPaginate连接,所以当我向左滑动时,就像点击“下一个”寻呼机按钮一样,我似乎无法从Jquery Easypaginate找到参数允许我触摸到下一个寻呼机,请看下面我到目前为止所得到的,并提前感谢您的意见/帮助, 米歇尔

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script> 
      <script type="text/javascript" src="/js/easypaginate.js"></script>   
      <script type="text/javascript" src="/js/jquery.touchwipe.1.1.1.js"></script>  


              <script>

                $(document).ready(function() {


                   $('ul#items').touchwipe({
                       wipeLeft: function() { 
          // not sure what easyPaginate parameter should go below to trigger the touchwipe?
                           $('#pagination .prev').easyPaginate(); 
                        },
                       wipeRight: function() { 
                           $('#pagination').easyPaginate(next); 
                       },
        // wipeUp: function() { alert("up"); },
        // wipeDown: function() { alert("down"); },
         min_move_x: 20,
         min_move_y: 20,
         preventDefaultEvents: true
    }); 
                });

            </script>

1 个答案:

答案 0 :(得分:0)

我找到了Stack Overflow上的答案:

$(“#pagination .next”)。click(); //选择你的'下一个'btn