HTML 如何设置 America/New_York 时间的 ”2023-01-02 8:00 AM“
时间: 2024-06-03 07:09:09 浏览: 248
您可以使用 JavaScript 的 Date 对象来设置特定的时区时间,具体代码如下:
var d = new Date('2023-01-02T08:00:00-05:00');
document.write(d.toLocaleString());
这将输出:2023/1/2 上午8:00:00
请注意,-05:00 表示美国纽约时区的标准时间偏移量。
相关问题
js 使用 Intl 获取2022-01-02 8:00AM America/New_York 的时间
可以使用以下代码获取该时间:
```
const date = new Date('2022-01-02T13:00:00Z');
const options = {timeZone: 'America/New_York', hour12: true, hour: 'numeric', minute: 'numeric', month: 'long', day: 'numeric', year: 'numeric'};
const formatter = new Intl.DateTimeFormat('en-US', options);
const result = formatter.format(date);
console.log(result); // January 2, 2022, 8:00 AM
```
希望能对您有所帮助。
阅读全文