1

我想在我的服务器上倒计时到 22:00(晚上 10:00)。

我无法从纪录片中理解这样做的确切方法,我已经设法定义了从服务器中提取的时间(虽然在小提琴中它不起作用,也许它拒绝抓住那个服务器时间.php),

并将 22 定义为小时值,但它不起作用,它只是将 +22 小时添加到当前时间。

  1. 这应该怎么做?

  2. 我真的需要所有这些代码和外部 php(附带 2 个额外的 .js 资源)来实现我想要的吗?

HTML:

<span id="vvv"></span>

JS:

$('#vvv').countdown({ 
    until:new Date(2014, 11 - 1, 9, 22, 0, 0), serverSync: serverTime, layout: '{hn} {hl}, {mn} {ml}, {sn} {sl}'}

                   ); 

function serverTime() { 
    var time = null; 
    $.ajax({url: 'http://keith-wood.name/servertime.php', 
        async: false, dataType: 'text', 
        success: function(text) { 
            time = new Date(text); 
        }, error: function(http, message, exc) { 
            time = new Date(); 
    }}); 
    return time; 
}
4

0 回答 0