使用jQuery TableSorter,我无法正确过滤包含欧洲格式数字的列(每3位数字点,逗号为十进制数字)。无论如何,整理工作就像一个魅力。
在此处查看我的问题:http://jsfiddle.net/Ted22/9tBgZ/13/
我使用这段代码:
jQuery.tablesorter.addParser({
id: "commaDigit",
is: function(s, table) {
var c = table.config;
return $.tablesorter.isDigit(s.replace(/[,.]/g, ""), c);
},
format: function(s) {
return $.tablesorter.formatFloat(s.replace(/[,.]/g, ""));
},
parsed: false,
type: "numeric"
});
你能帮助我吗?
谢谢你的支持!
泰德