使用javascript设置设置日期

时间:2016-10-05 13:42:49

标签: javascript

使用倒计时插件,但我认为我将日期和时间设置错误。

代码:

var clock;

$(document).ready(function() {
    // Grab the current date
    var currentDate = new Date();
    // Set some date in the future. In this case, it's always Jan 1
    var futureDate  = new Date(2016,10,27, 10,00,00);
    // Calculate the difference in seconds between the future and current date
    var diff = futureDate.getTime() / 1000 - currentDate.getTime() / 1000;
    // Instantiate a coutdown FlipClock
    clock = $('.clock').FlipClock(diff, {
        clockFace: 'DailyCounter',
        countdown: true
    });
});

我正在尝试这个:

var futureDate = new Date(2016,10,27, 10,00,00);

2016年10月27日上午10点

编码52天虽然所以我一定做错了

1 个答案:

答案 0 :(得分:2)

  

2016年10月27日上午10点

那你出错的地方。 JavaScript中的月份是0索引(1月是0,12月是11),第10个月实际上是11月。

var futureDate = new Date(2016,9,27,10,00,00);