jQuery倒计时插件只倒数秒

时间:2012-09-13 13:08:43

标签: jquery jquery-plugins countdown countdowntimer jquery-countdown

我正在使用Jquery Countdown Plugin,并且只想在几秒钟内倒计时,并以秒为单位添加总时间。

例如,当我的倒计时为10分钟时,而不是显示 9分59秒并计数,它将显示599秒并计数。 这可能吗? 谢谢

1 个答案:

答案 0 :(得分:1)

$('#yourElement').countdown({
    until: someTime,
    format: 'S' // <-- the magic is happening here
});

相关文档is found here(标签:格式2,第4个示例)