0

我目前有一个 Javascript 函数,它可以根据需要多次克隆我的表单的一部分(选择框),让最终用户可以根据需要添加尽可能多的字段。一切正常,除了只有硬编码的 HTML 是通过 POST 与我的表单一起发送的,其余的不包括在内。为什么会这样,如何解决?

Javascript:

$(function()
{
    var template = $('#inventoryItems .inventory:first').clone(),
        inventoryCount = 0;

    var addInventory = function()
    {
        inventoryCount++;
        var inventory = template.clone().find(':input').each(function()
        {
            var newLabel = "invItem{" + inventoryCount + "]";
            $(this).prev().attr('id', newLabel);
            $(this).prev().attr('name', newLabel);
        }).end()
        .attr('id', 'inv' + inventoryCount)
        .appendTo('#inventoryItems > fieldset');
    };

    $('.btnAddInventory').click(addInventory);
});

HTML

                        <fieldset style="width:62%; float:left; margin-left: 19%;">

                            <div id="inv1" class="inventory" style="margin-bottom:5px;">
                                <select name="invItem[0]" id="invItem[0]" style="width:92%;">

                                    <?php
                                        getInventoryOptions($dp_conn, "", $datacenter);
                                    ?>
                                </select>

                                <input class="btnRemoveInventory" type="button" style="background: url(images/icn_trash.png) no-repeat; cursor:pointer; border: none;">
                            </div>

                        </fieldset><div class="clear"></div>

                        <!-- Add Inventory Button -->
                        <div style="width:62%; margin:0; padding:0; float: right; margin-right: 19%">
                            <input class="btnAddInventory" type="button" value="Add Item" style="float: right;">
                        </div><div class="clear"></div>

                    </div>
4

2 回答 2

2

我猜这个:

var newLabel = "invItem{" + inventoryCount + "]";
//---------------------^

应该

var newLabel = "invItem[" + inventoryCount + "]";
于 2013-09-24T01:33:09.283 回答
1

当您更新输入的 id 和 name 时,您将其替换为invItem{x]而不是invItem[x].

于 2013-09-24T01:33:27.817 回答