任务我正在克隆具有以下功能的 div.cloneable:
$('#addBtn').click(function() {
var c = $('.cloneable:first').clone(true);
$('.cloneable:last').after(c);
}
});
然后,在我克隆 .cloneable 之后,我可以使用此函数删除任何实例:
$('.dltBtn').click(function() { $(this).closest('.cloneable').remove(); $('.dltBtn').attr('disabled',($('.cloneable').length
问题: 我在 div.cloneable 中有一行 html:“Adobe Flash Streaming Service #1”。如何递增/递减并显示#1,在我克隆时递增以显示#2、*3 等,以及在删除 div.cloneable 元素时递减?