本文介绍了表排序器在我有更多行时进行排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个超过 2 行的表格,我不想只对第 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.
推荐答案
默认情况下,它会占用您最后的时间.
BY default it will take your last .
将其更改为您可以使用的第一个.var table = $('#stu_view_example1').DataTable({orderCellsTop: 真或者"bSortCellsTop": 真});
for changing it to first you can use.var table = $('#stu_view_example1 ').DataTable({ orderCellsTop: trueor "bSortCellsTop": true });
这篇关于表排序器在我有更多行时进行排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!