http://keith-wood.name/countdown.html
我正在使用这个jQuery插件。
$('#noDays').countdown({
until: enddate_final, format: 'HMS', compact: true, description: '', timeSeparator: ' : '});
我拥有并且工作正常。如果倒计时为00:00:00,我希望输出“倒计时结束”。
我该怎么做?
答案 0 :(得分:1)
查看您发布的网页上的文档,
标签:Callbacks
例3#
使用配置属性expiryText
$('#expireMessage').countdown({
until: shortly.setSeconds(shortly.getSeconds() + 5.5),
expiryText: '<div class="over">It\'s all over</div>'
});