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