实施 TableSorter 以包含数百万和数十亿的价格
我在 jquery 中使用 TableSorter 插件。然而,表中的一列如下所示:
市值
- $12M
- $1.2B
- $3B
- $34M
并且 TableSorter 无法正常工作。知道如何解决它。我可以使用任何其他插件吗?
PS:我无法取消后缀 M & B. 所以我无法从数学上修改市值以使其正常工作。
谢谢
I am using the TableSorter plugin in jquery. However one of the column in the table is listed as follows :
Market Cap
- $12M
- $1.2B
- $3B
- $34M
And the TableSorter is not working properly. Any idea how to fix it. Any other plugin which I can use ?
P.S: I cannot do-away with suffix M & B. So I cannot Mathematically modify the Market cap so that it works properly.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
检查这个小提琴
浏览TableSorter 的文档 看起来您可以创建一个自定义解析器。
创建了这个简单的解析器,它看起来可以解决问题
Check this fiddle out
Looking through the docs of TableSorter it looks like you can create a custom parser.
Created this simply parser and it looks to do the trick
阿明的回答很好。也可以与“K”一起使用,或者可以与任何其他措施一起使用。所以完整的例子是:
对于像这样的 html:
Amin's answer is good. Also with "K" or it can be used with any other measure. So the complete example would be:
For an html like:
缺少一些东西!!
在上面的示例中,其中一个值是 $1.2B,然后 parseInt(s) 会将其转换为整数。
考虑使用:parseFloat() & toFixed() 用于考虑小数
Missing something!!
In the example above one of the values is $1.2B, then parseInt(s) will convert it to integer.
Consider using instead: parseFloat() & toFixed() for decimals to consider