3

我试图让我的倒数计时器说0 Yrs, 0 Months, 7 days 0 Mins等等,但是无论我尝试输入什么数字,并且尽可能多地计算出来,我都会得到诸如 7,349 天之类的答案。这是代码:

// jQuery Countdown styles 1.6.1. - plugin by Keith Wood
function counter_start() {
    var austDay = new Date();
    austDay = new Date(austDay.getFullYear() - 2016, 0 - 7, 0); // Examples: (austDay.getFullYear() + 1, 3 - 1, 6) or (2013, 3 - 1, 6)
    $("#defaultCountdown").countdown({
        until: austDay, 
        format: 'DHMS'
    });
}

我已经查看并阅读并询问了其他人,但这不是我的领域,我只是不明白。有人给我提个醒吗?非常感谢您的阅读。杰米。

4

4 回答 4

0

你的格式不准确。请试试:

$('#defaultCountdown').countdown({
    until: austDay, 
    format: 'YODM'
});

Y = 年

O = 月

D = 天

M = 分钟

于 2016-01-14T11:34:06.923 回答
0

试试这个为你的倒数计时器插件Jquery.countdown

通过自定义你的 custom.js 来试试这个

 $('#clock').countdown('2016/10/31').on('update.countdown',   
     function(event) {
   var $this = $(this).html(event.strftime(''

     + '<div><span>%-d</span>day%!d</div>'
     + '<div><span>%H</span>hr</div>'
     + '<div><span>%M</span>min</div>'
     + '<div><span>%S</span>sec</div>'));
 });
于 2016-06-11T03:47:47.950 回答
0

我喜欢http://keith-wood.name/countdownRef.html官方文档中的这种方法来应用您想要的任何格式,由您自己定制:

$(selector).countdown({ 
    until: liftoffTime, onTick: watchCountdown}); 

function watchCountdown(periods) { 
    $('#monitor').text('Just ' + periods[5] + 
        ' minutes and ' + periods[6] + ' seconds to go'); 
}

在该官方文档中,他们准确地解释了它的onTick作用以及如何使用它:

每次倒计时更新自身时调用的回调函数。在函数中,this 指的是保存小部件的分区。当前倒计时周期的数组(int[7] - 基于格式设置)作为参数传递:[0] 是年,1是月,[2] 是周,[3] 是天,[4] 是小时,[5] 是分钟,[6] 是秒。

于 2019-09-02T18:30:51.267 回答
-1

在您的情况下,这很容易使用。在 var target_date 中指定要倒计时的日期。您可以在脚本末尾的 countdown.innerhtml 处更改输出格式。(已经是 Y:M:D:S 格式)

ar target_date = new Date("Aug 15, 2018").getTime();
var days, hours, minutes, seconds;

setInterval(function () {
var countdown = document.getElementById("countdown");
var current_date = new Date().getTime();
var seconds_left = (target_date - current_date) / 1000;


days = parseInt(seconds_left / 86400);
seconds_left = seconds_left % 86400;

hours = parseInt(seconds_left / 3600);
seconds_left = seconds_left % 3600;

minutes = parseInt(seconds_left / 60);
seconds = parseInt(seconds_left % 60);

countdown.innerHTML = days + "d, " + hours + "h, "+ minutes + "m, " + seconds + "s";  }, 1000);

并将html放在正文中:

<span id="countdown"></span> 
于 2016-01-14T11:38:25.103 回答