我在这里使用这个梦幻般的jQuery代码: http://hilios.github.io/jQuery.countdown/
我试图在结束日期之后使其工作。 你有什么主意吗? 它应该显示如下内容:
3 semaines soit 10 heures et 10 minutes
$('#timeout').countdown(finalDate, {elapse: true})
.countdown("2015/05/01 12:00:00", function(event) {
$(this).text(
event.strftime('%-w %!w:semaine,semaines; soit %-D %!D:jour,jours; et %-H %!H:heure,heures;')
);
});
谢谢!