0

我做了一些整天的学习,我想出了如何使用 jquery 为我的表单动态添加行。但是现在我无法终生弄清楚如何删除最后添加的行。

$('#btnAdd').click(function() {
                var num     = $('.clonedInput').length;
                var newNum  = new Number(num + 1);

                var newElem = $('#input' + num).clone().attr('id', 'input' + newNum);

                newElem.children('.client').attr('id', 'client' + newNum).attr('name', 'client' + newNum);
                newElem.children('.color').attr('id', 'color' + newNum).attr('name', 'color' + newNum);

                $('#input' + num).after(newElem);
                $('#btnDel').attr('disabled','');

                if (newNum == 5)
                    $('#btnAdd').attr('disabled','disabled');

            });



<form id="myForm">
    <div id="input1" style="margin-bottom:4px;" class="clonedInput">

<select name="client" id="client" class="client">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>

<input type="text" name="color" id="color" class="color"/>

    </div>

    <div>
        <input type="button" id="btnAdd" value="Add Row" />
    </div>
</form>

并在 jsFiddle 上为您带来观赏乐趣:Demo

回答 Blender提供

$('#btnRemove').on('click', function() {
    $('.clonedInput').last().remove();
});
4

6 回答 6

6

像这样?

$('#btnRemove').on('click', function() {
    $('.clonedInput').last().remove();
});
​

演示:http: //jsfiddle.net/P8bTz/2/

于 2012-06-15T04:50:21.220 回答
2

添加一个按钮并将这一行绑定到它:

$(".clonedInput").last().remove();
于 2012-06-15T04:49:39.380 回答
2
$('div.clonedInput:last').remove();
于 2012-06-15T04:49:46.797 回答
0

试试http://jsfiddle.net/P8bTz/1/

于 2012-06-15T04:56:02.123 回答
0

http://jsfiddle.net/P8bTz/3/这个应该也展示你希望的删除按钮禁用行为

于 2012-06-15T04:57:24.047 回答
0

jquery的最后一个将起到以下作用:

$('#your_doms_id').last().remove();
于 2012-06-15T05:20:50.073 回答