js 如何使用参数 ”America/New_York“获取时间偏移量
时间: 2024-05-07 17:16:35 浏览: 72
js 获取时间
您可以使用 JavaScript 中的 Intl.DateTimeFormat() 函数来获取该时区的时间偏移量。例如:
```
const date = new Date();
const options = { timeZone: 'America/New_York' };
const offset = new Intl.DateTimeFormat('en-US', options).formatToParts(date).find(x => x.type === 'timeZoneName').value;
console.log(offset);
```
这将输出该时区的时间偏移量,例如 "-04:00"。
阅读全文