将自定义值添加到 jQuery 插件:Tablesorter 2.0

发布于 2025-01-02 07:52:04 字数 161 浏览 0 评论 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 技术交流群。

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

发布评论

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

评论(1

养猫人 2025-01-09 07:52:04

使用自定义解析器,如此处的示例所示。您可以使用 format 函数来测试 0,并返回 Number.MAX_VALUE。我修改了示例链接中的代码,以使用“0 是最高”规则对微积分列进行排序,如下所示:(

$.tablesorter.addParser({
    // set a unique id
    id: 'calculus',
    is: function(s) {
        // return false so this parser is not auto detected
        return false;
    },
    format: function(s) {
        // format your data for normalization
        if ( s === '0' ) { return Number.MAX_VALUE; }
        return s;
    },
    // set type, either numeric or text
    type: 'numeric'
});

$(function() {
    $("table").tablesorter({
        headers: {
            5: {
                sorter:'calculus'
            }
        }
    });
}); 

注意:链接中的示例在微积分列中不包含 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:

$.tablesorter.addParser({
    // set a unique id
    id: 'calculus',
    is: function(s) {
        // return false so this parser is not auto detected
        return false;
    },
    format: function(s) {
        // format your data for normalization
        if ( s === '0' ) { return Number.MAX_VALUE; }
        return s;
    },
    // set type, either numeric or text
    type: 'numeric'
});

$(function() {
    $("table").tablesorter({
        headers: {
            5: {
                sorter:'calculus'
            }
        }
    });
}); 

(Note: the example in the link does not contain a value of 0 in the Calculus column).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文