我有这个 jquery tat 我正在使用小提琴(使用它与我的网站一起进行测试)。
$(document).ready( function() {
var regex = /^(.*)(\d)+$/i;
var cloneIndex = $(".clonedInput").length;
$("button.clone").click(function(e){
$(this).parents(".clonedInput").clone()
.insertBefore(copy)
.attr("id", "clonedInput" + cloneIndex)
.find("*").each(function() {
var id = this.id || "";
var match = id.match(regex) || [];
if (match.length == 3) {
this.id = match[1] + (cloneIndex);
}
});
cloneIndex++;
return false;
});
$("button.remove").click(function(){
$(this).children(".clonedInput").remove();
});
});
我遇到的两个问题(可能是由一个问题引起的)是当我删除一个“克隆”字段时,它会删除除父字段之外的所有其他字段,而当我克隆一个字段时,它仅适用于父母并保留原始值...
任何帮助,将不胜感激!