我在这里使用了这个很棒的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;')
);
});
谢谢!
你的代码中有一些错误。
使用文档中给出的示例,如果您这样编写,它可以完美运行:
$('#timeout').countdown("2015/05/05 12:00:00", {elapse: true})
.on('update.countdown', function(event) {
$(this).text(
event.strftime('%-w %!w:semaine,semaines; soit %-D %!D:jour,jours; et %-H %!H:heure,heures;')
);
});
我做了一个JsFiddle作为示例