gpt4 book ai didi

jquery - 如何在动态创建的按钮上使用 jQuery 捕获点击事件

转载 作者:行者123 更新时间:2023-12-01 07:13:46 25 4
gpt4 key购买 nike

我有 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();
});
});

问题是事件按钮仅适用于现有行。如果我创建一个新行,“单击”事件将不起作用。

最佳答案

您需要使用Event Delegation

$('#nuevo_producto').on('click','.delete_row',function(){
$("tr#" + $(this).attr("id")).remove();
});

.on()

<小时/> Two HTML elements with same id attribute: How bad is it really?

ID 必须是唯一的

<小时/>

更改您的 html

<tr id="1">

<tr data-id="1">

比使用

$('#nuevo_producto').on('click','.delete_row',function(){
$('tr[data-id="'+$(this).data('id')+'"]').remove();
});

<小时/>或

改变

<button class="btn btn-default delete_row" id="1"

<button class="btn btn-default delete_row" data-id="1"

比使用

$('#nuevo_producto').on('click','.delete_row',function(){
$('#'+$(this).data('id')).remove();
});

.data()

关于jquery - 如何在动态创建的按钮上使用 jQuery 捕获点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21913283/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com