我当前正在建立一个可排序的列表,我希望执行以下操作:
我的问题出现在第3步。我希望让.uniqueID()方法将其计数器重置为1-它实际上可以执行此操作吗?我最好使用其他方法吗?
$('#yearGroups').children().uniqueId().end().sortable({
axis: 'y',
opacity: 0.5,
update: function (event, ui) {
var serials = $(this).sortable('serialize');
$.ajax({
data: {serials: serials, departmentID: getQueryVariable("id")},
type: 'POST',
url: '<redacted>'
});
},
stop: function( event, ui ) {
$('.sortable').removeAttr("id");
$('#yearGroups').children().uniqueId().end();
}
});