我在 thead 中有一个带有删除链接的表格,当单击此链接时,我想删除包括 tbody 在内的整个列(并淡出)。
表格示例:
<table class="example" id="dnd-example">
<thead>
<tr>
<th>Column A <a href="" class="delsite" rel="1">x</a></th>
<th>Column B <a href="" class="delsite" rel="2">x</a></th>
<th>Column C <a href="" class="delsite" rel="3">x</a></th>
</tr>
<tbody>
<td>213</td>
<td>213</td>
<td>213</td>
</tbody>
</table>
我试图通过将 tr 更改为 td 来调整用于删除行的一些代码,但它不适用于列。
$(".delsite").click(function() {
var id =$(this).attr('rel');
$(this).closest('td').fadeOut("normal", function() { $(this).remove(); });
//
//
});