假设我有一个这样的可排序列表:
$(".song-list").sortable({
handle : '.pos_handle',
axis : 'y',
opacity: 0.6,
update : function () {
var id = $(this).index();
console.log("Moved to new position: " + id);
}
});
当您移动列表时,它应该在控制台中更新为新位置。.pos_handle
没有ID..只有班级。
我将如何获得它的新移动位置的索引?