Jquery ui可移动的可排序保持和拖动

时间:2015-12-01 18:45:17

标签: jquery jquery-ui jquery-mobile

我有一个jQuery UI可排序列表。我试图让它在移动设备上运行。我使用了触摸打孔解决方法。为了滚动,我必须停用可排序的功能,我已经完成了,并且在列表元素的taphold上激活可排序的功能。这工作正常,但问题是我想在taphold上允许对元素进行排序。现在它只是这样工作:taphold元素(taphold停止)然后我必须再次点击它以进行排序。

HTML代码:

<ul class="list-group" id="wrapper">
 <li class="list-group-item">Block 1</li>
 <li class="list-group-item">Block 2</li>
 <li class="list-group-item">Block 3</li>
 <li class="list-group-item">Block 4</li>
 <li class="list-group-item">Block 5</li>
 <li class="list-group-item">Block 6</li>
 <li class="list-group-item">Block 7</li>
 <li class="list-group-item">Block 8</li>
 <li class="list-group-item">Block 9</li>
 <li class="list-group-item">Block 10</li>
 <li class="list-group-item">Block 11</li>
 <li class="list-group-item">Block 12</li>
 <li class="list-group-item">Block 13</li>
 <li class="list-group-item">Block 14</li>
 <li class="list-group-item">Block 15</li>
 <li class="list-group-item">Block 16</li>
 <li class="list-group-item">Block 17</li>
 <li class="list-group-item">Block 18</li>
 <li class="list-group-item">Block 19</li>
 <li class="list-group-item">Block 20</li>
 <li class="list-group-item">Block 21</li>
 <li class="list-group-item">Block 22</li>
 <li class="list-group-item">Block 23</li>
</ul>

JS代码:

$('#wrapper li').on('taphold', function(event, ui) {
    $( "#wrapper li" ).removeClass('selected');
    $( "#wrapper" ).sortable({disabled:false});
    $(this).addClass('selected');
});

$( "#wrapper" ).sortable({disabled:true,containment: "parent"});

$( "#wrapper" ).on( "sortupdate", function( event, ui ) {
    $( "#wrapper" ).sortable({disabled:true});
} );

这是示例的jsfiddle(https://jsfiddle.net/3cygah12/)。

任何人都知道如何解决这个问题?

2 个答案:

答案 0 :(得分:12)

我设法做到了。

我修改了这样的触摸打孔(http://touchpunch.furf.com/)代码的一部分来将touchstart绑定到taphold -

mouseProto._mouseInit = function () {

var self = this;

// Delegate the touch handlers to the widget's element
self.element
    .bind('taphold', $.proxy(self, '_touchStart'))   // IMPORTANT!MOD FOR TAPHOLD TO START SORTABLE
    .bind('touchmove', $.proxy(self, '_touchMove'))
    .bind('touchend', $.proxy(self, '_touchEnd'));

// Call the original $.ui.mouse init method
_mouseInit.call(self);
};  

还使用了https://github.com/benmajor/jQuery-Touch-Events。它现在有效!

答案 1 :(得分:9)

我用这个小插件解决了同样的问题:

http://touchpunch.furf.com/

将此库添加到您的脚本中。

另一种方法是下载整个移动jquery库(here)并像这样工作

$('#yourSelector').on('touchstart mousedown', function(event){
  event.preventDefault();
  var touch = event.touches[0];
 if(touch){
   //Do some stuff
 }
 else {
  //Do some other stuff
 }
});