2

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

我在一个 div 中有两个输入,我在单击提交按钮时添加它们,并且每个新输入都有一个更新的名称和 id(bandname1、bandname2、bandname3 ...)。它适用于第一个输入(乐队名),但不适用于第二个(乐队描述),我不知道为什么会这样。

这是适用的代码...

$(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)了,没用。

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

4

1 回答 1

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,这是无效的

演示:小提琴

于 2013-03-13T03:22:58.343 回答