Я пытаюсь отсортировать таблицу с JavaScript-объектами Date в одном из столбцов.Форма даты: мм / дд / гггг ч: мин. Утра Когда я пытаюсь отсортировать по дате, я нажимаю на заголовок, и ничего не происходит.Я могу отсортировать по другим столбцам просто отлично.Операторы console.log были добавлены для целей отладки - вы можете их игнорировать.
$.tablesorter.addParser({
id: "customDate",
is: function(s) {
//return false;
//use the above line if you don't want table sorter to auto detected this parser
//else use the below line.
//attention: doesn't check for invalid stuff
//2009-77-77 77:77:77.0 would also be matched
//if that doesn't suit you alter the regex to be more restrictive
var passes = /\d{1,2}\/\d{1,2}\/\d{1,4}\s\d{1,2}:\d{1,2}\s[ap]\.m\./.test(s);
return passes;
},
format: function(s) {
s = s.replace(/\-/g," ");
s = s.replace(/:/g," ");
s = s.replace(/\./g," ");
s = s.replace(/\//g," ");
s = s.replace(/a\sm/, 1);
s = s.replace(/p\sm/, 2);
s = s.split(" ");
console.log('am or pm: ' + s[5]);
console.log('hour == ' + s[3]);
if (s[3] == '12' && s[5] == 1){
s[3] = 0; //convert 12am to 0 hours.
console.log('new hour -- 12am: ' + s[3]);
}
else if (s[5] == 2 && s[3] != '12'){
s[3] = parseInt(s[3]) + 12; //convert p.m. hours to military time format if it isn't noon.
console.log('new hour -- pm: ' + s[3]);
}
console.log('minutes: ' + parseInt(s[4]));
console.log();
return $.tablesorter.formatFloat(new Date(s[2], s[0], s[1], s[3], s[4],0,0,0));
},
type: "numeric"
});