我想在其他国家/地区获取时间,并使用下面的时刻时区,我只是想检查我这样做是否正确:
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);
}
因此,无论从哪个国家/地区运行应用程序,都可以显示正确的时间。
感谢任何帮助。
由于