我有一些结构:
li#lists
--ul
----li.category
------ul.due
--------li.item
------ul.date
--------li.item
------ul.other
--------li.item
--------li.item
--------li.item
我需要在ul.other元素中输入我的li.item元素。现在在某些类别中排序正在运行,但我需要将项目排序到另一个类别。
示例:我需要排序"这是可排序的2"之后"这是可排序的5"。或排序"这是可排序的5"之后"这是可排序的2"。
我的代码(fiddle):
$('.category ul.other').sortable({
items: "li",
helper: "clone",
cursor: "move",
placeholder: "drag-to",
opacity: 0.5,
connectWith: ".category ul.other"
}).disableSelection();