现在显示的是 02天xx小时xx分 如何将天数前面的0去掉,当时间不足24小时时天数和前面的数字隐藏 只显示小时分钟,怎么改 <div style="width:100%; height: 30px; overflow:hidden"> <div style=" background-color:#ff6702;opacity:0.1; width:100%; height:30px;"></div> <div style="position: relative; margin-top:-30px; color:#999 "> <p style="text-align: center;line-height: 30px;"> <a id="remain-time" data-remain="190000" >190000</a> </p> </div> </div> $(function(){ var remainTime = $("#remain-time").data("remain"); if (remainTime > 0) { var final = new Date().setTime(new Date().getTime() + remainTime * 1000); $('#remain-time').countdown(final, function(event) { $(this).text(event.strftime('剩余时间:%D天%H小时%M分钟%S秒')); }).on("finish.countdown", function(){ $(this).text("债权已过期"); }); }else{ $('#remain-time').text("债权已过期"); }
CZ3909475
相关分类