我在this great code找到了Demo。我只需要做一些改变。我想
你能帮帮我吗?
谢谢,
更新1: 我喜欢这个 alt text http://imagik.fr/thumb/275405.jpeg
答案 0 :(得分:5)
<form id="myForm">
<div style="margin-bottom:4px;" class="clonedInput">
<input type="button" class="btnDel" value="Delete" disabled="disabled" />
<input type="text" name="input1" />
</div>
<div>
<input type="button" id="btnAdd" value="add another name" />
</div>
</form>
$(document).ready(function() {
var inputs = 1;
$('#btnAdd').click(function() {
$('.btnDel:disabled').removeAttr('disabled');
var c = $('.clonedInput:first').clone(true);
c.children(':text').attr('name','input'+ (++inputs) );
$('.clonedInput:last').after(c);
});
$('.btnDel').click(function() {
if (confirm('continue delete?')) {
--inputs;
$(this).closest('.clonedInput').remove();
$('.btnDel').attr('disabled',($('.clonedInput').length < 2));
}
});
});
资源