表格如下
<div style="overflow-x: auto; 800px">
<table id="taresults02" class='stk-table stk-table-bbline' width='2000px'>
<tr>
<c:forEach items="${querys02}" var="query02">
<th class='stk-table-th' align='center' width='100px'>${query02.filefieldname}</th> </c:forEach> </tr>
</table>
</div>
清空的方法
$("#taresults02 tr:not(:first)").empty();
$("#taresults02 tr").eq(1).nextAll().remove();