2

他の jQuery の n 番目の子の質問を調査しましたが、私が抱えている問題に関連するものはないようです。

送信ボタンのクリック時に追加する div に 2 つの入力があり、新しい入力ごとに更新された名前と ID (bandname1、bandname2、bandname3...) が与えられます。最初の入力 (bandname) では正常に動作しますが、2 番目の入力 (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)ましたが、役に立ちませんでした。

関連情報を忘れてしまった場合はお知らせください。

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 に答える