2011-11-17 60 views
1

我想排序表中的一个表中的javascript日期对象。日期的格式为mm/dd/yyyy hr:min a.m.当我尝试按日期排序时,点击标题,什么也没有发生。我可以根据其他列进行排序。 console.log语句是为了调试目的而添加的 - 您可以忽略这些语句。如何使用javascript排序日期对象tablesorter?

$.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" 
    }); 
+0

您需要从一个月数subract 1(S [0]),以获得正确的日期根据月在javascript日期对象是零。但是,它不会影响排序,因为所有日期都会超出一个月。 24小时不是“军事时间格式”,它在世界大部分地区被平民广泛使用,例如,航空公司。 – RobG

回答

0

嗯,我解决了我自己的问题。如果我在我的日期对象上调用getTime(),它会返回日期的数字值,并且我可以对其进行排序。

这行代码现在看起来像:

return $.tablesorter.formatFloat(new Date(s[2], s[0], s[1], s[3], s[4],0,0,0).getTime()); 
0

使用UTC date format:20111117,您可以按字母顺序对其进行排序。

+1

UTC不是日期格式,它是一个时区。您正在寻找的是ISO8601格式,日期为yyyy-mm-dd,可能包括时间和区域。如果您建议[Date.prototype.toUTCString()](http://es5.github.com/#x15.9.5.42),那么请注意'String的内容是依赖于实现的'。 – RobG