JSP table中除了第一行(标题)其他全清空

时间:2022-12-24 18:26:12

表格如下

<div style="overflow-x: auto;width: 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();