gpt4 book ai didi

jquery - 删除第二行之后的 html 表格行

转载 作者:行者123 更新时间:2023-12-01 00:47:04 25 4
gpt4 key购买 nike

如何删除第二行之后的 html 表格行?如果表中有 5 行,1 和 2 是安全的,则 3,4,5 必须删除

最佳答案

使用detach( ) 而不是 remove()

var myremovedElems = $("#table tr:gt(1)").detach();

The .detach() method is the same as .remove(), except that .detach() keeps all jQuery data associated with the removed elements. This method is useful when removed elements are to be reinserted into the DOM at a later time.

关于jquery - 删除第二行之后的 html 表格行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2385733/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com