欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Jquery sort table number

程序员文章站 2022-05-25 19:29:05
...
So here is what the column is sorted as:

    4,666
    141,666
    293
    341,666
    346
    461,676

This should be sorted as

    293
    346
    4,666
    141,666
    341,666
    461,676



$(document).ready(function() {
      $.tablesorter.addParser({
        id: 'fancyNumber',
        is:function(s){return false;},
        format: function(s) {return s.replace(/[\,\.]/g,'');},
        type: 'numeric'
    });
    $("table").tablesorter({headers: {0: {sorter: 'fancyNumber'}}});
});