为什么 JavaScript Date.getTimezoneOffset() 会考虑“-05:00"?作为一个积极的抵消? [英] Why does JavaScript Date.getTimezoneOffset() consider "-05:00" as a positive offset?

查看:27
本文介绍了为什么 JavaScript Date.getTimezoneOffset() 会考虑“-05:00"?作为一个积极的抵消?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我注意到,对于我们在东部时区(America/New_York"),时区偏移为 -05:00" Date.getTimezoneOffset() 返回一个 300 的数量.我预计在 Utc 以西的地区以分钟为单位的偏移量为负数,在 Utc 以东的地区为正数,但显然它是翻转的".这个决定背后的原因是什么?

I noticed that for us on Eastern Time zone ("America/New_York") with timezone offset of "-05:00" Date.getTimezoneOffset() returns a positive number of 300. I would expect offset in minutes to be negative in areas to the West from Utc, and to be positive in areas to the east of Utc, but apparently it's "flippded". What's the reasoning behind that decision?

http://momentjs.com/ 遵循相同的规则并返回...

http://momentjs.com/ follows the same rule and returns...

moment.parseZone("01/13/2014 3:38:00 PM +01:00").zone()   // == -60
moment.parseZone("01/13/2014 3:38:00 PM -01:00").zone()   // == 60

同时 DateTimePicker http://trentrichardson.com/examples/timepicker/ 在设置它的时候不会翻转数字初始时区"参数.错了吗?

At the same time DateTimePicker http://trentrichardson.com/examples/timepicker/ does not flip numbers when setting its initial 'timezone' parameter. Is it wrong?

推荐答案

因为它是这样定义的.引用文档(MDN):

Because that's how it's defined. Quoting the doc (MDN):

时区偏移量是 UTC 和当地时间.请注意,这意味着 偏移量是正的,如果本地时区落后于 UTC,如果领先则为负数.

The time-zone offset is the difference, in minutes, between UTC and local time. Note that this means that the offset is positive if the local timezone is behind UTC and negative if it is ahead.

这篇关于为什么 JavaScript Date.getTimezoneOffset() 会考虑“-05:00"?作为一个积极的抵消?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆