0
我從數據庫中提取日期。前段時間工作正常,但它不是更新時間jQuery Timeago插件與php
<abbr class="timer timeago modified"><?php echo date('Y-m-d H:i:s', strtotime($row['project_create_date'])); ?></abbr>
JQuery的
$(function() {
/*Time Ago*/
prepareDynamicDates();
var time = '';
$('.timer').each(function(){
var time = $(this).text();
$(this).text(jQuery.timeago(time));
});
});
我假設你需要使用'setInterval()更新文本' –