开头和结尾的倒计时javascript

时间:2016-02-09 04:41:19

标签: javascript countdown

五月天五月天,有人可以帮帮我 如何从第一个访问时间到结束时间(从服务器读取日期时间)制作倒数计时器

$(document).ready(function(){
    liftoffTime=new Date(<?php echo $serverTimeEndTest;?>);
    $("‪#‎timer‬").countdown({until: liftoffTime, format: 'HMS', expiryUrl:"/urlExpired"});
    function serverTime() {
      var time = null;
      $.ajax({url: "/ServerTimes",
        async: false, dataType: 'text',
        success: function(text) {
          time = new Date(text);
        }, error: function(http, message, exc) {
          time = new Date();
        }
      });
      return time;
    }
});

我使用这个脚本

$("#timer").countdown({since:new Date(<?php echo $startVisit;?>),until: liftoffTime, format: 'HMS', expiryUrl:"/urlExpired"});

显示00:00:00且已过期的时间

帮帮我

由于

1 个答案:

答案 0 :(得分:0)

因为当客户在线时,如果客户端的日期不同,倒计时时间会有不同的结果。我想客户端和服务器总是一样的。

实施例

服务器:09-02-2016 04:07:10 PM 客户:09-02-2016 04:07:10 PM 倒数到120分钟

结果倒计时从02:00:00到00:00:00

但是,如果客户端计算机上的时间是08-02-2016 04:07:10 PM 结果倒计时从26:00:00到00:00:00