我可以将“刚才”作为JQuery Timeago的时间传入吗?

时间:2012-05-21 16:43:50

标签: jquery timezone timeago

我正在使用JQuery timeago使我的约会很漂亮(例如“1天前”)。是否有“刚才”的关键字,还是我必须将javascript计算时间传递给PHP?

 <abbr class='timeago' title='What do I put here?'>Just Now</abbr>

1 个答案:

答案 0 :(得分:0)

使用jQuery为您插入时间戳。

var justnow = ISODateString(new Date());
$('abbr[title="just now"]').each(function() {
    $(this).attr('title', justnow);
});

ISODateString是:

function ISODateString(d) {
    function pad(n) {
        return n < 10 ? '0' + n : n
    }
    return d.getUTCFullYear() + '-' + pad(d.getUTCMonth() + 1) + '-' + pad(d.getUTCDate()) + 'T' + pad(d.getUTCHours()) + ':' + pad(d.getUTCMinutes()) + ':' + pad(d.getUTCSeconds()) + 'Z';
}

示例:http://jsfiddle.net/jtbowden/RZXzL/