gpt4 book ai didi

javascript - 单击表格行删除按钮后删除表格行

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

解决方案可以使用 jQuery 或纯 JavaScript。

我想在用户单击表行单元格中包含的相应按钮后删除表行,例如:

<script>
function SomeDeleteRowFunction() {
//no clue what to put here?
}
</script>

<table>
<tr>
<td><input type="button" value="Delete Row" onclick="SomeDeleteRowFunction()"></td>
</tr>
<tr>
<td><input type="button" value="Delete Row" onclick="SomeDeleteRowFunction()"></td>
</tr>
<tr>
<td><input type="button" value="Delete Row" onclick="SomeDeleteRowFunction()"></td>
</tr>
</table>

最佳答案

您可以使用 jQuery click 而不是使用 onclick 属性,请尝试以下操作:

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

Demo

关于javascript - 单击表格行删除按钮后删除表格行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11553768/

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