Jquery如何删除table里面checkbox选中的多个行

时间:2022-09-16 00:43:38

1、HTML结构

1 2 3
4 5 6
7 8 9
10 11 12

2、jquery代码
(function(){(“input[type=’button’]”).click(function() {
(“input[name=’test’]:checked”).each(function() { // 遍历选中的checkbox  
            n =
(this).parents(“tr”).index(); // 获取checkbox所在行的顺序
$(“table#test_table”).find(“tr:eq(“+n+”)”).remove();
});
});
});