gpt4 book ai didi

javascript - 使用 jquery 动态删除表行不起作用

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

该表是动态生成的。

<table class='myTab' id='selectPlaceTable' border='1px'>
<tr>
<td>Something</td>
<td>Something</td>
<td>Something</td>
<td><input type='button' class='buttonRmv' id='buttonRmv' value='+'</td>
</tr>
</table>

jquery函数

$(document).ready(function(){
$(".buttonRmv").on('click',function(){
$(this).parent().parent().remove();
});
});

最佳答案

使用这个

Check Demo

$(document).ready(function(){
$(document.body).on('click',".buttonRmv",function(){
$(this).parent().parent().remove();
});
});

关于javascript - 使用 jquery 动态删除表行不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28712259/

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