我正在做一些html5 / jquery拖放功能来重新排序一组DOM元素。我现在想要更改与这些DOM元素对应的对象数组,但我不太清楚如何做到这一点。这是javascript:
var draggedIndex = $('.segmentListItem').index($(draggedItem));
var targetIndex = $('.segmentListItem').index($(this));
var playlist = jwplayer().getPlaylist(); //MH - the array for which I want to change the order
if (draggedIndex > targetIndex){
$(draggedItem).insertBefore($(this));
//MH - need to move the playlist item at the index of the dragged item before index the target item as well
} else {
$(draggedItem).insertAfter($(this));
//MH - need to move the playlist item at the index of the dragged item before index the target item as well
}
答案 0 :(得分:2)
如果播放列表是常规数组,而不是对象(您将其称为数组),可能是这样的:
Array.prototype.move = function (old_index, new_index) {
if (new_index >= this.length) {
var k = new_index - this.length;
while ((k--) + 1) {
this.push(undefined);
}
}
this.splice(new_index, 0, this.splice(old_index, 1)[0]);
};
var draggedIndex = $('.segmentListItem').index($(draggedItem));
var targetIndex = $('.segmentListItem').index($(this));
var playlist = jwplayer().getPlaylist(); //MH - the array for which I want to change the order
if (draggedIndex > targetIndex){
$(draggedItem).insertBefore($(this));
playlist.move(draggedIndex, targetIndex);
} else {
$(draggedItem).insertAfter($(this));
playlist.move(draggedIndex, targetIndex);
}