且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

同时拖动多个列表项

更新时间:2023-11-13 11:46:28

不在插件中。

您可以编写一些自定义代码将项目添加到选择中,然后一次移动多个。



喜欢:

  $(li).bind(click,function(){
$(this).toggleClass sort-selected');
});

$(ul).bind(sortreceive,function(event,ui){
$('li.sorting-selected')。appendTo($(this)) ;
});


I have two lists connected with jQuery UI's sortable, allowing to drag items from one list to another.

http://jsbin.com/uraga3

Is there a simple way to drag several items at the same time - e.g. to move items #3, #4 and #7 from left to right?

Not in the plugin.

You can write some custom code to add items to a selection and then move multiple at once.

Like:

$( "li" ).bind( "click", function() {
  $(this).toggleClass('sorting-selected');
});

$( "ul" ).bind( "sortreceive", function(event, ui) {
  $('li.sorting-selected').appendTo($(this));
});