gpt4 book ai didi

jquery - 我正在尝试向表添加删除按钮,并且仅删除 jquery 中的该表行。

转载 作者:行者123 更新时间:2023-12-01 03:36:21 25 4
gpt4 key购买 nike

相反,它会删除所有表行。我知道有某种方法可以使用父/子选择器仅选择该行,但不确定正确的组合

$("#add-another-essay").click(function(){
event.preventDefault();
$('tbody').append("<tr class='essays-new-table-row'>"+$('.essays-new-table-row').html()+"</tr>")
});

$("#remove-another-essay").click(function(){
event.preventDefault();

$('.essays-new-table-row').remove();
});

最佳答案

要删除单击的行:

$(this).closest('tr').remove();

而不是:

$('.essays-new-table-row').remove();  //this removes all rows with that class

JS Fiddle demo

关于jquery - 我正在尝试向表添加删除按钮,并且仅删除 jquery 中的该表行。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33354357/

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