gpt4 book ai didi

jquery - 排序时保留行的位置

转载 作者:行者123 更新时间:2023-12-01 03:43:59 26 4
gpt4 key购买 nike

在我的表(JQuery Datatables)中,有一行(最后一行)始终必须位于末尾(用于总计)。

我可以区分它的值,因为它们就像:

<td><span class="last-row">MY VALUE</span></td>

如何使排序函数始终将此类行放在末尾,无论按哪一列排序,也无论排序是 ASC 还是 DESC?

最佳答案

为了充实 SiGanteng 的建议,您可以使用元素 tfoot 来定义表格中的页脚行。

<table>
<thead>
<tr>
<!-- modern browsers know how to render these, it is also used by screen readers and other assistive technologies -->
<td>header 1</td>
<td>header 2</td>
<td>header 3</td>
</tr>
</thead>
<tfoot> <!--ditto-->
<tr>
<td colspan="3">footer text</td>
</tr>
</tfoot>
<tbody>
<!-- regular html rows & cols here -->
</tbody>
</table>

关于jquery - 排序时保留行的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15651102/

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