我正在尝试使用jQuery plugin countdown 2.1计算时间。我需要从0开始计时,一次计数一秒钟。
这就是我所做的
$('#MasterBreakTimer').countdown(new Date(),
{
elapsed: true,
strftime: '%H:%M:%S'
});
但它没有显示任何内容
如何正确实现倒计时?
答案 0 :(得分:0)
我明白了。
我需要添加一个事件来显示结果,如此
$('#MasterBreakTimer').countdown(new Date(),
{
elapse: true,
strftime: '%H:%M:%S'
}).on('update.countdown', function(event){
$(this).html(event.strftime('<span>%H:%M:%S</span>') );
});