如何在JavaScript中获取当前服务器UTC时间

时间:2017-02-07 11:43:30

标签: javascript php

   var k=new Date();
   alert(k);

它提醒当地时间。但我需要显示当前服务器的UTC时间。

2 个答案:

答案 0 :(得分:1)

JavaScript基本上是在客户端。您将无法在Java脚本中获得服务器时间,因为它将在客户端上执行并仅为您提供服务器时间(此处Node.js是例外)。

如果你真的希望在javascript中拥有服务器时间。您可以在服务器端编写 Api Web服务,这将为您提供所需格式的服务器时间。使用 XMLHTTP Ajax 请求调用此webservice / Api并解析响应并根据您的意愿显示时间。

Ajax发布代码示例:

        $.post( "Your Web Service Page", function( data ) {
          //Assuming that Your web service will not need any paramerter 
           and just write the server time in utc in response
          alert(data ); 

        });

答案 1 :(得分:-1)

试试这个new Date().toUTCString()