jQuery delete all table rows except first

后端 未结 14 1360
失恋的感觉
失恋的感觉 2021-01-29 17:40

Using jQuery, how do I delete all rows in a table except the first? This is my first attempt at using index selectors. If I understand the examples correctly, the following sh

14条回答
  •  既然无缘
    2021-01-29 18:22

    $('#table tr').slice(1).remove();
    

    I remember coming across that 'slice' is faster than all other approaches, so just putting it here.

提交回复
热议问题