gpt4 book ai didi

jquery - 将排序箭头应用于第二行

转载 作者:行者123 更新时间:2023-12-01 04:13:05 24 4
gpt4 key购买 nike

我正在使用 jquery 数据表。

我希望将排序箭头应用于表格的第二行而不是第一行。

HTML:

<table id="tableUsers" class="datatable">
<thead>
<tr class="filterRow">
<td></td>
<td></td>
<td data-rownum="2">
@Html.Partial("_FilterDropDown", Model.RoleList)
</td>
<td></td>
<td></td>
<td></td>
<td data-rownum="8">
@Html.Partial("_FilterDropDown", Model.EnabledList)
</td>
<td></td>
<td></td>
</tr>
<tr>
<th class="width-110">User name
</th>
<th class="width-110">Name
</th>
<th class="width-110">Role
</th>
<th class="width-200">Email
</th>
<th class="width-90">Created
</th>
<th>DateSort
</th>
<th class="width-80">Enabled
</th>
<th class="width-90">Action
</th>
<th>EnabledSort
</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>

这就是它的样子:

enter image description here

我想要第二行的箭头。谢谢

最佳答案

// copy the filter row
var filterRow = $("#tableUsers .filterRow").clone();
// remove the filter row
$("#tableUsers .filterRow").remove();
// initialize the data table
$("#tableUsers").dataTable();
// re-add the filter row
$("#tableUsers thead tr:first").before(filterRow);

关于jquery - 将排序箭头应用于第二行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17856800/

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