我有一些结构:
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 元素进行排序。现在在某些类别中排序正在工作,但我需要将项目排序到另一个类别。
示例:我需要在“这是可排序的 5”之后排序“这是可排序的 2”。或在“这是可排序的 2”之后排序“这是可排序的 5”。
我的代码(小提琴):
$('.category ul.other').sortable({
items: "li",
helper: "clone",
cursor: "move",
placeholder: "drag-to",
opacity: 0.5,
connectWith: ".category ul.other"
}).disableSelection();