标签: jquery html-table rows
一个简单的解决方案,我正在jQuery中搜索以删除除表中的隐藏行以外的所有表行。在这里,我已经尝试了基本级别(请原谅。)。
LastEvaluatedKey
HTML代码:
$("#example-datatable tbody tr:not(:hidden)").remove();
答案 0 :(得分:1)
只需使用
$("#example-datatable tbody tr").not(":hidden").remove();