jQuery   发布时间:2022-04-19  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了jquery – tablesorter用逗号分隔数字大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我在使用带有a的货币的tablesorter插件遇到问题
例如:9,789,000.00等

有谁知道这方面的工作?

请不要向我推荐其他图书馆.

解决方法

Tablesorter允许您为这样的事情定义 “custom parsers”.

// add parser through the tablesorter addParser method 
$.tablesorter.addParser({ 
    // set a unique id 
    id: 'thousands',is: function(s) { 
        // return false so this parser is not auto detected 
        return false; 
    },format: function(s) {
        // format your data for normalization 
        return s.replace('$','').replace(/,/g,'');
    },// set type,either numeric or text 
    type: 'numeric' 
}); 

$(function() {
    $("table").tablesorter({
        headers: {
            6: {//zero-based column index
                sorter:'thousands'
            }
        }
    });
});

可能需要调整格式函数.

也尝试在页面搜索,主题已经被讨论了很多次,如here

大佬总结

以上是大佬教程为你收集整理的jquery – tablesorter用逗号分隔数字全部内容,希望文章能够帮你解决jquery – tablesorter用逗号分隔数字所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。