0

我在表格旁边动态创建了一行

var index = 1;

$("#add_field").click(function(){

var new_field = '<tr><th style="text-align: left;">Customer '+index+'</th><td><input type="text" id="customer'+index+'" name="customer'+index+'" maxlength="50"></td><th style="text-align: left;">Phone</th><td><input type="text" id="customerphone'+index+'" name="customerphone'+index+'" maxlength="14"></td><th style="text-align: left;">Email</th><td><input type="text" id="customeremail'+index+'" name="customeremail'+index+'" maxlength="100"></td></tr>';

$("#customerFormTable").append(new_field); });

html

<div id="add_field">Click here to add more rows </div>

我现在如何创建删除 - 删除我刚刚创建的最后一行

<div id="delete_row">Click here to delete last row created </div>

$("#delete_row").click(function(){  ??????
4

2 回答 2

2
$("#customerFormTable tr:last").remove();
于 2012-04-06T12:02:11.680 回答
0

根据删除该特定行将 ID 分配给元素 TR

$("#trid").remove();
于 2012-04-06T12:06:25.393 回答