同时动态创建多个输入

时间:2014-01-06 23:17:21

标签: javascript jquery html input

我正在创建一个表单,其中一个字段集将根据需要添加用户添加的输入字段,这些字段具有可选择的高度和可选的复选框。我找到了一个很好的例子,说明如何一次添加一个输入类型,但不能同时添加和配对。任何想法将在这一个赞赏!谢谢!你们都是我的英雄。 可在此处找到单个输入代码的示例http://charlie.griefer.com/blog/2009/09/17/jquery-dynamically-adding-form-elements/

HTML:

<form id="myForm">
    <div id="input1" style="margin-bottom:4px;" class="clonedInput">
        Name: <input type="text" name="name1" id="name1" />
    </div>

    <div>
        <input type="button" id="btnAdd" value="add another name" />
        <input type="button" id="btnDel" value="remove name" />
    </div>
</form>

JS:

$(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').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');
        });

1 个答案:

答案 0 :(得分:2)

您拥有的代码已经克隆了.clonedInput div中的内容。所以你需要做的就是在文本框后添加一个复选框。

<div id="input1" style="margin-bottom:4px;" class="clonedInput">
    Name: <input type="text" name="name1" id="name1" /> <input type="checkbox" name="chk1" id="chk1" />
</div>

要获取id / name值以附加新数字,您需要调整此行,这将为文本框元素提供ID1和name1,name2,name3等名称:

newElem.children('input[type=text]:first').attr('id', 'name' + newNum).attr('name', 'name' + newNum);

并添加此行,这将为复选框元素提供chk1,chk2,chk3等的ID和名称:

newElem.children('input[type=checkbox]:first').attr('id', 'chk' + newNum).attr('name', 'chk' + newNum);

这是updated fiddle