0

我有一个表单,我将初始输入字段克隆为模板,以允许用户根据需要添加尽可能多的选项。添加新字段可以正常工作,但是在尝试删除它们时,第一个字段按预期工作,但无法删除所有生成的字段。

我对 JS 的了解很差,但我认为将其设置为删除父级应该是正确的操作。

<script type="text/javascript">
$(function()
{
    var template = $('#inventoryItems .inventory:first').clone(),
        inventoryCount = 1;

    var addInventory = function()
    {
        inventoryCount++;
        var inventory = template.clone().find(':input').each(function()
        {
            var newId = this.id.substring(0, this.id.length-1) + inventoryCount;
            $(this).prev().attr('for', newId); // update label for (assume prev sib is label)
            this.name = this.id = newId; // update id and name (assume the same)
        }).end() // back to .attendee
        .attr('id', 'inv' + inventoryCount) // update attendee id
        .appendTo('#inventoryItems > fieldset'); // add to fieldset
    };

    $('.btnAddInventory').click(addInventory); // attach event
});

$(function()
{
    var removeInventory = function()
    {
        $(this).parent().remove();
    };

    $('.btnRemoveInventory').click(removeInventory); // attach event
});
</script>

HTML:

                <div id="inventoryItems" class="inventoryItems" style="margin:0; padding:0;">

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

                        <label>Inventory</label>
                        <div id="inv1" class="inventory">
                            <select name="invItem1" style="width:92%;">
                                <?php
                                    $invItem_values = array("id", "name");
                                    display_options_list($dp_conn, $invItem_values, "inventory", "id");
                                ?>
                            </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

1 回答 1

1

通过(或任何其他快捷事件处理程序)附加事件click()仅适用于页面加载时可用的元素。相反,因为您是动态添加元素,所以您需要使用委托事件处理程序。改变这个:

$('.btnRemoveInventory').click(removeInventory)

对此:

$('#inventoryItems').on('click', '.btnRemoveInventory', removeInventory)

这是将事件附加到最近的静态元素,#inventoryItems然后过滤引发的事件以查看目标是否匹配.btnRemoveInventory

于 2013-09-09T11:03:16.750 回答