我可以获得使用以下 JS Bin 代码而不是 JS 对象移动的 UI 元素。
http://jsbin.com/edopuh/14/edit
ko.bindingHandlers.Sortable = {
init: function (element, valueAccessor, allBindingsAccessor) {
var options = ko.utils.unwrapObservable(valueAccessor() || {});
$(element).sortable({
items: 'li:not(".notsortable")',
update: function(event, ui){
alert("you just moved " + $(ui.item[0]).text());
}
});
}
};
移动后,如何获取 Person 对象列表和新位置?