jquery.countdown.js 显示错误的日期

jquery.countdown.js showing wrong date

以下是我在 jquery 倒计时中使用的代码,但它计算错误 date.i 需要将其设置为 2015 年 2 月 1 日,尝试将月份设置为 01(月份从零开始)但在这种情况下计数器消失

<script>
    $('#clock').countdown('2015/02/01').on('update.countdown', function(event) {
        var $this = $(this).html(event.strftime(''
        + '<ul class="co"><li><a href=""><span>%-d</span><br>Days </a></li>'
        + '<li><a href=""><span>%H</span><br> Hours </a></li>'
        + '<li><a href=""><span>%M</span><br> Minutes </a></li>'
        + '<li><a href=""><span>%S</span><br> Seconds</a></li></ul>'));
    });
</script>   

假设您要创建到 2015 年 2 月 1 日的倒计时,您应该使用以下代码:

$('#clock').countdown({until: new Date(2015, 12-11, 1)}))