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

表格如下

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

posted @ 2013-11-13 14:38  Duelsol  阅读(1004)  评论(0编辑  收藏  举报