我正在使用 jQuery 将时间戳转换为时间前。它工作得很好,但是当我的页面有太多时间戳时,这个代码只需要第一个时间戳,并在所有时间戳上显示第一次。
jQuery(document).ready(function() {
var time = $('.timestamp').attr('datetime');
var time2 = format_date(time);
$('.timestamp').html(time2);
});
<abbr class="timestamp" datetime="1370993104">0 seconds ago</abbr>
<abbr class="timestamp" datetime="1370854140">0 seconds ago</abbr>
<abbr class="timestamp" datetime="1370627340">0 seconds ago</abbr>