jquery nth child issue

时间:2013-03-13 02:57:28

标签: jquery forms jquery-selectors css-selectors

我研究了其他jQuery nth孩子的问题,但似乎没有一个与我遇到的问题有关。

我在div中有两个输入,我在点击提交按钮时附加,每个新输入都有一个更新的名称和id(bandname1,bandname2,bandname3 ......)。它适用于第一个输入(带名),但不适用于第二个(banddescrip),我无法弄清楚为什么会这样。

以下是适用的代码......

$(document).ready(function () {
    $('#btnAdd').click(function () {
        var num = $('.clonedInput').length; // how many "duplicatable" input fields we currently have
        var newNum = new Number(num + 1); // the numeric ID of the new input field being added
        // create the new element via clone(), and manipulate it's ID using newNum value
        var newElem = $('#input' + num).clone().attr('id', 'input' + newNum);
        // manipulate the name/id values of the input inside the new element
        newElem.children(':first', 'div:nth-child(2)').attr('id', 'name' + newNum).attr('name', 'name' + newNum);
        // insert the new element after the last "duplicatable" input field
        $('#input' + num).after(newElem);
        // enable the "remove" button
        $('#btnDel').attr('disabled', '');
        // business rule: you can only add 5 names
        // if (newNum == 5)
        //$('#btnAdd').attr('disabled','disabled');
    });
    $('#btnDel').click(function () {
        var num = $('.clonedInput').length; // how many "duplicatable" input fields we currently have
        $('#input' + num).remove(); // remove the last element
        // enable the "add" button
        $('#btnAdd').attr('disabled', '');
        // if only one element remains, disable the "remove" button
        if (num - 1 == 1) $('#btnDel').attr('disabled', 'disabled');
    });
    $('#btnDel').attr('disabled', 'disabled');
});

HTML

<div id="input1" class="clonedInput">
    <input type="text" name="bandname1" id="bandname1" size="75" value="Band Name" />
    <input type="text" name="banddescrip1" id="banddescrip1" size="75" value="Short Description" />
</div>

我也试过div input:nth-child(2),但没有用。

如果我忘记了任何相关信息,请告诉我。

1 个答案:

答案 0 :(得分:1)

尝试

newElem.children('input[id^="bandname"]').attr('id', 'bandname' + newNum).attr('name', 'bandname' + newNum);
newElem.children('input[id^="banddescrip"]').attr('id', 'banddescrip' + newNum).attr('name', 'banddescrip' + newNum);

注意:id属性在整个文档中应该是唯一的,在这种情况下,两个元素都具有相同的id,这是无效的

演示:Fiddle