使用时刻时区

时间:2016-09-18 12:04:36

标签: javascript

我想在其他国家/地区获取时间,并使用下面的时刻时区,我只是想检查我这样做是否正确:

function showTheTime() {
    var s = moment().tz("Europe/London").format("hh:mmA");
  console.log("Time is: " + s);
}

function showTheTime() {
    var s = moment().tz("Europe/Paris").format("hh:mmA");
  console.log("Time is: " + s);
}

function showTheTime() {
    var s = moment().tz("Europe/Madrid").format("hh:mmA");
  console.log("Time is: " + s);
}

因此,无论从哪个国家/地区运行应用程序,都可以显示正确的时间。

感谢任何帮助。

由于

2 个答案:

答案 0 :(得分:0)

是的,你正在这样做,因为Moment给你时间UTC并且你正在使用TZ将它转换为特定区域。

答案 1 :(得分:0)

上述脚本将有效,直到有人手动更改机器时间

enter image description here