如何找出时区字符串?

时间:2015-11-10 14:03:47

标签: javascript timezone momentjs

this question中,我发现了如何使用不同时区的方法。

这给了我一个很好的例子:

var la = moment().tz("America/Los_Angeles")
var nl = moment().tz("Europe/Amsterdam")

console.log('now:')
console.log(la.format());
console.log(nl.format());

现在这些时区字符串是硬编码的,我怎么可能知道这些特定用户需要哪个时区字符串?

我需要类似的东西:

var timeZone = moment.getCurrentTimeZone();
var someTimeZone = moment().tz(timeZone);

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

您可以从日期字符串

中提取它



function getTimeZone() {
  return /\((.*)\)/.exec(new Date().toString())[1];
}

document.write(getTimeZone()); // Pacific Daylight Time