我正在使用Jquery Countdown Plugin,并且只想在几秒钟内倒计时,并以秒为单位添加总时间。
例如,当我的倒计时为10分钟时,而不是显示 9分59秒并计数,它将显示599秒并计数。 这可能吗? 谢谢
答案 0 :(得分:1)
$('#yourElement').countdown({
until: someTime,
format: 'S' // <-- the magic is happening here
});
相关文档is found here(标签:格式2,第4个示例)