如何创建计时器"计数"使用jQuery Countdown插件?

时间:2016-01-25 23:40:08

标签: javascript jquery plugins countdown

我正在尝试使用jQuery plugin countdown 2.1计算时间。我需要从0开始计时,一次计数一秒钟。

这就是我所做的

        $('#MasterBreakTimer').countdown(new Date(), 
        {
                elapsed: true,
                strftime: '%H:%M:%S'
        });

但它没有显示任何内容

如何正确实现倒计时?

1 个答案:

答案 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>') );
});