当我有更多行时,表排序器进行排序
我有一个包含超过 2 行的表,并且我不想仅对第二行元素执行排序,如何使用表排序器来实现这一点?请帮助我。
I have a table with more than 2 rows in and i wnt to perform sorting only on 2nd row elements, how can this be achieved using table sorter?Please help me out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我有类似的情况,但我只使用第一行进行表排序。第二行用于选择过滤器,所以我总是希望它保留在第 2 行。将两行放入但使第二行单元格而不是
单元格就可以了。
I have a similar situation, but I only use the first row for tablesorter. The second row is used for selection filters, so I always want it to stay at row 2. Putting both rows in but making the second row cells instead of
<th>
cells does the trick.默认情况下,它将占用您的最后一个 .
将其更改为第一个即可使用。
var 表 = $('#stu_view_example1 ').DataTable({
orderCellsTop:true
或者
“bSortCellsTop”:true
});
BY default it will take your last .
for changing it to first you can use.
var table = $('#stu_view_example1 ').DataTable({
orderCellsTop: true
or
"bSortCellsTop": true
});