我正在尝试将timeagodatejs (with help of this to get format for local time)结合起来

对于timeago,我使用以下代码:

jQuery(document).ready(function() {
  jQuery("abbr.timeago").timeago();
});

对于localtime,我使用以下代码:
jQuery(document).ready(function() {
    $('.UTCTimestamp').localTimeFromUTC('MM/dd/yyyy hh:mm:ss');
});

如何将这两个结合在一起?现在,我只能在这样的时间使用一个:

对于Timeago:
<span class='UTCTimestamp'>2011-09-09 10:10:10</span>

在本地时间;
<abbr class='timeago' title='2011-09-09 10:10:10'>2011-09-09 10:10:10</abbr>

最佳答案

除此之外,请勿添加任何JavaScript代码或jquery代码;

$('.timeago').timeago();

然后添加“Z”(或包括T)。有关更多信息,请转到此link
<abbr class='timeago' title='2011-09-09 10:10:10Z'></abbr>

http://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations

10-06 04:35