我使用如下可排序:
$('.column').sortable({
connectWith: "#column1",
revert: 100,
items: ".myItems:not(.excluded)",
}).disableSelection();
是否可以即时更新items:
回调?
因此,如果发生特定情况,items:
则变为 items:.myItems
而不是.myItems:not(.excluded)
.