如何使用javascript或jquery获取全局时间(不是pc时间)?

Har*_*hah 5 javascript jquery

我正在使用javascript创建一个倒数计时器; 我可以使用jQuery.我希望全球时间不是PC时间.

我如何使用javascript或jQuery获取全球时间?

Ric*_*uza 9

使用时间API,如:http: //www.timeapi.org/

<script type="text/javascript">
     function myCallback(json) {
          alert(new Date(json.dateString));
     }
</script>
<script type="text/javascript" src="http://timeapi.org/utc/now.json?callback=myCallback"></script>
Run Code Online (Sandbox Code Playgroud)

您可以使用Date对象中的UTC方法:http://www.w3schools.com/jsref/jsref_obj_date.asp

var utcDate = new Date(json.dateString);
alert(utcDate.getUTCFullYear() + '-' + utcDate.getUTCMonth() + utcDAte.getUTCDate());
Run Code Online (Sandbox Code Playgroud)