我正在尝试设置自定义日期解析器,但无法理解它。基本上我的日期格式为mm / yyyy。
有人能指出我正确的方向吗?
由于
答案 0 :(得分:4)
$.tablesorter.addParser({
id: 'date_ger',
is: function(s) {
return false;
},
format: function(s) {
var res = s.split('/');
return res[1]+res[0];
},
type: 'numeric'
});
在第三栏中使用它:
$(document).ready(function() {
$("#tableinfi").tablesorter({
headers: {
2: {
sorter:'date_ger',
}
}
});