【发布时间】:2014-03-21 17:15:51
【问题描述】:
我有 HTML 表格,可以在其中动态创建新行。对于每一行,我还创建一个按钮,我可以删除刚刚创建的行。但是 jQuery 不会在动态创建的行中捕获事件。 HTML 代码:
<table>
...
<tbody id="nuevo_producto">
<tr id="1">
<td><input type = "hidden" name = "tabla-1">1</td>
<td><input readonly="readonly" class = "form-control" placeholder = "Ref." type = "text" size = "15" id = "modelo_ref_1" name = "modelo_ref_1" value="122"></td>
<td><input class = "form-control" placeholder = "Ref. C" type = "text" size = "15" id = "modelo_refc_1" name = "modelo_refc_1" value="231"></td>
<td><input class = "form-control" placeholder = "Modelo" type = "text" size = "60" id = "modelo_modelo_1" name = "modelo_modelo_1" value="sadsadsad"></td>
<td><input class = "form-control" placeholder = "PVP" type = "text" size = "15" id = "modelo_pvp_1" name = "modelo_pvp_1" value="12"></td>
<td><button class="btn btn-default delete_row" id="1" value="eliminar_fila"><span class="glyphicon glyphicon-minus"></span></button></td> <!-- Button to delete row -->
</tr>
<tr id="2">
... <!--another rows that I have created dinamically-->
</tr>
...
</tbody>
</table>
删除刚刚点击的行的jQuery代码
$(".delete_row").each(function() {
$(this).on("click", function(e) {
e.preventDefault();
$("tr#" + $(this).attr("id")).remove();
});
});
问题在于事件按钮仅适用于现有行。如果我创建一个新行,“点击”事件将不起作用。
【问题讨论】:
标签: jquery html html-table row