将自定义值添加到 jQuery 插件:Tablesorter 2.0
我正在尝试找到一种方法来更改表中的值,因此它是另一回事。
例如,如果我有这些数字的列表: 1 4 21 6 2 23 0 21 54
我需要 0 才值得最大的金额,所以当升序排序时,1 应该在第一个,0 应该在最后一个。有人对如何做到这一点有任何想法吗?
谢谢
I'm trying to figure a way out to change a value in my table so it's something else.
For example, if I have a list of these numbers:
1
4
21
6
2
23
0
21
54
I need 0 to be worth the largest amount, so when sorted ascending order, 1 should be in first, and 0 should be in last. Does anyone have any ideas on how to do this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用自定义解析器,如此处的示例所示。您可以使用 format 函数来测试 0,并返回
Number.MAX_VALUE
。我修改了示例链接中的代码,以使用“0 是最高”规则对微积分列进行排序,如下所示:(注意:链接中的示例在微积分列中不包含 0 值)。
Use a custom parser as shown in the example here. You can use the format function to test for 0, and return
Number.MAX_VALUE
. I modified the code from the example link to sort the Calculus column using your "0 is highest" rule, below:(Note: the example in the link does not contain a value of 0 in the Calculus column).