我用jQuery倒计时插件编写倒计时代码.
我只希望它显示有效(‘非零’)期间,例如代替
剩余时间:0天,0小时,13分钟,20秒
它应该只显示
13分钟,20秒.
我的代码是:
$('#countdown').countdown({
expiryUrl:'index.php?show=main',
expiryText: 'EXPIRED',
until: timeleft,
layout:'{d<}{dn} {dl} and {d>}{h<}{hn} {hl}, {h>}{m<}{mnn} {ml}, {m>}{s<}{snn}{sl}{s>}'
});
但问题是,使用此代码,它隐藏了“天”时段,但不是“小时/分钟”
所以目前我得到这个:
剩余时间:0小时,10分钟,27秒
我该怎么做来隐藏所有零时段?
谢谢!
解决方法:
Hiya请看到这里添加2 jsfiddle以显示您的区别:http://jsfiddle.net/8JJ9B/6/(只有秒会出现注意这种情况发生时,你将**格式**选项倒计时作为小写)和http://jsfiddle.net/8JJ9B/4/(零也将出现,因为我有格式选项设置为大写字符)更新http://jsfiddle.net/cUW4M/
为避免出现任何非零值,倒计时插件有一个名为format的引用:选项为小写字符
进一步http://keith-wood.name/countdownRef.html#format
[Quote]Format option == …Use upper-case characters for mandatory periods, or the
corresponding lower-case characters for optional periods, i.e. only
display if non-zero. Once one optional period is shown, all the ones
after that are also shown…[Unquote]
码
$('#highlightCountdown').countdown({until: 0, format: 'hmS',onTick: highlightLast5});