三种方式:
直接代码:
1、$("#mytable tr:gt(0)").remove();
2、$("#mytable tr:not(:first)").empty();
3、$("table tr").text("").find(":not(:first)").remove();
<table id="mytable">
<tr class="first">
<td class="td1">第一个</td>
<td class="date1">第二个</td>
</tr>
</table>