admin管理员组文章数量:1344187
I have a ISO8601 date that contains a timezone offset (see below). When I create a Date object from this, the date object is converted into my timezone (currently GMT), and timezone offset goes to 0. Is there any way to get the Date() constructor to preserve the timezone offset?
var date = new Date("2012-01-17T12:55:00.000+01:00");
console.log(date.toString());
The output I get is:
"Tue Jan 17 2012 11:55:00 GMT+0000 (GMT)"
The output I want is:
"Tue Jan 17 2012 12:55:00"
I have a ISO8601 date that contains a timezone offset (see below). When I create a Date object from this, the date object is converted into my timezone (currently GMT), and timezone offset goes to 0. Is there any way to get the Date() constructor to preserve the timezone offset?
var date = new Date("2012-01-17T12:55:00.000+01:00");
console.log(date.toString());
The output I get is:
"Tue Jan 17 2012 11:55:00 GMT+0000 (GMT)"
The output I want is:
"Tue Jan 17 2012 12:55:00"
Share
Improve this question
asked Jan 16, 2012 at 16:52
KevinKevin
11.7k22 gold badges84 silver badges104 bronze badges
2
- By copying & paste your example in Google Chrome, I get the output you want 'Tue Jan 17 2012 12:55:00 GMT+0100 (Paris, Madrid)', which browser do you use? – Arnaud F. Commented Jan 16, 2012 at 17:17
- @ArnaudF. I strongly suspect that is because your local timezone is GMT +1. Here in Fort Worth, TX in Chrome I get: 'Tue Jan 17 2012 05:55:00 GMT-0600 (Central Standard Time)'. – DMKing Commented Jan 16, 2012 at 17:44
1 Answer
Reset to default 9Not with the built-in Date
object, as they're only aware of Local (as defined by the user's browser and/or OS settings) and UTC. You can see this from the many cloned methods the class has (e.g., getHours
/ getUTCHours
).
getTimezoneOffset
is the only timezone info you really have, but it's local as well and will probably only give you +0
again (or +6 in my case):
var date = new Date("2012-01-17T12:55:00.000+01:00");
console.log(date.getTimezoneOffset() / 60.0);
You can try timezone-js (or one of its forks), but you'll need to know the Olson timezone name not just the GMT/UTC offset:
var date = new new timezoneJS.Date('2012-01-17T12:55:00.000+01:00', 'Europe/Brussels');
alert(date.getTimezoneOffset() / 60.0); // +1
本文标签: datetimejavascript datepreserve timezone offsetStack Overflow
版权声明:本文标题:datetime - javascript date - preserve timezone offset - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743696144a2523534.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论