我正在拖动元素并递增其ID我只想知道如何在删除元素后序列化id。
$(document).on('click', '.js-remove', function(event) {
event.preventDefault();
/* Act on the event */
$(this).slideDown();
$(this).animate({
"opacity" : "0",
},{
"complete" : function() {
$(this).parent().remove();
}
});
});
更新:
答案 0 :(得分:0)
您可以通过将此循环添加到test-clone-X
功能来重新编号ID "complete"
:
//Re-numbering id's of each div inside .test class.
$('.test').each(function(i, obj) {
$(this).attr("id", "test-clone-" + ( i + 1 ) );
});
检查元素并在删除任何元素时查看新ID。