如何使用jquery在表中添加新行

时间:2017-04-07 08:10:32

标签: jquery

我正在尝试在按钮单击中添加表中的新行,其添加行但没有绑定下拉列表

我试过这个

 $("#btnAddRow").click(function () {
            debugger;
            var value = $("#TnoOfRows").val();
            for (var i = 0; i < value; i++) {
                $('#example').clone().appendTo('<tr><td><select class="form-control ddlClient" /></td><td><input type="text" class="form-control dtpicker" /> </td><td><input type="text" class="form-control amount" /></td><td><button class="btn bg-teal-400 addInvoice" title="Add Your Invoices" data-toggle="modal" data-target="#myModal"><i class="icon-plus2"></i></button>&nbsp<input type="button" class="form-control"  value="Delete" /></td></tr>')

            }
        });
        $('#example').on('click', 'input[type="button"]', function () {
            $(this).closest('tr').remove();
        });

0 个答案:

没有答案