jQuery TableSorter 自定义货币解析器

发布于 2024-12-03 11:32:42 字数 601 浏览 1 评论 0原文

可能的重复:
jQuery tablesorter - 不对具有格式化货币值的列进行排序

这个 http://tablesorter.com/docs/example-meta-parsers.html 对我来说绝对很棒。

但是,我是意大利人,所以我想像这样显示我的货币价值:

12.345,67 欧元

而不是这个

$12345.67

我读了一些有关自定义解析器的内容,但我不知道到底如何继续。

你能帮助我吗?

Possible Duplicate:
jQuery tablesorter - Not sorting column with formatted currency value

This http://tablesorter.com/docs/example-meta-parsers.html is definitely awesome for me.

However, I am italian, so I want to display my currency value like this:

€ 12.345,67

instead of this

$ 12345.67

I read something about custom parsers, but I don't know exactly how to proceed.

Can you help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥抱没勇气 2024-12-10 11:32:43

将货币列的标题更改为

<th class="{sorter: 'commaDigit'}">Cost</th> 

并添加以下自定义解析器:

jQuery.tablesorter.addParser({
    id: "commaDigit",
    is: function(s) {
        return /^[0-9]?[0-9,\.]*$/.test(s);
    },
    format: function(s) {
        return $.tablesorter.formatFloat(s.replace(/,/g, ''));
    },
    type: "numeric"
});

Change the header with the currency column to

<th class="{sorter: 'commaDigit'}">Cost</th> 

And add the following custom parser :

jQuery.tablesorter.addParser({
    id: "commaDigit",
    is: function(s) {
        return /^[0-9]?[0-9,\.]*$/.test(s);
    },
    format: function(s) {
        return $.tablesorter.formatFloat(s.replace(/,/g, ''));
    },
    type: "numeric"
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文