jQuery delete all table rows except first

后端 未结 14 1175
失恋的感觉
失恋的感觉 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:21

    To Remove all rows, except the first one (except header), use the below code:

    $("#dataTable tr:gt(1)").remove();

提交回复
热议问题