JavaScript 日期构造函数和时区
JavaScript/ECMAScript/JScript 中的 Date 构造函数允许传递自 1970 年 1 月 1 日午夜以来的毫秒数。无论这是客户端计算机时区的午夜还是格林尼治标准时间的午夜,我都无法找到文档。是哪一个?不同浏览器、版本之间是否可以依赖?这在任何地方都有官方记录吗?
The Date constructor in JavaScript/ECMAScript/JScript allows passing the number of milliseconds since midnight, 1/1/1970. Nowhere can I find documentation whether this is midnight in the client machine's timezone, or midnight GMT. Which is it? Can it be relied on between different browsers and versions? Is this officially documented anywhere?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 ECMAScript 规范:
因此,为了回答您的问题,它是协调世界时。
From the ECMAScript specification:
So to answer your question, it's Coordinated Universal Time.