Is it possible in js to create a date object that is not affected by timezone? For example i want to set the year "2015", the month "03" and the day "31".
var ex = new Date(2015,3,31);
If i "print" this variable now it appears like this:
Fri May 01 2015 00:00:00 GMT+0200 (ora legale Europa occidentale)
It changes to the next day. Is possible to avoid that? How can i create a Date object that is always the same in every timezone?
I need to include this behavior in an application asap and i cannot work with just Strings because we have to use a datepicker plugin (Bootstrap) which works with date objects.
Thanks in advance
Is it possible in js to create a date object that is not affected by timezone? For example i want to set the year "2015", the month "03" and the day "31".
var ex = new Date(2015,3,31);
If i "print" this variable now it appears like this:
Fri May 01 2015 00:00:00 GMT+0200 (ora legale Europa occidentale)
It changes to the next day. Is possible to avoid that? How can i create a Date object that is always the same in every timezone?
I need to include this behavior in an application asap and i cannot work with just Strings because we have to use a datepicker plugin (Bootstrap) which works with date objects.
Thanks in advance
Share Improve this question asked Sep 5, 2015 at 0:29 Roberto MilanesiRoberto Milanesi 831 gold badge1 silver badge6 bronze badges 2- Months start at 0. 3 is April and it has only 30 days, that's why it changes to the next day. – gre_gor Commented Sep 5, 2015 at 0:37
- Here is the MDN documentation for the Date class. – Pointy Commented Sep 5, 2015 at 0:37
3 Answers
Reset to default 4Yes! If you create all your Date objects using the Date.UTC function, then they will all be relative to the standard UTC timezone, even if the user's browser has a different timezone set.
For example:
var ex = new Date( Date.UTC( 2015, 3, 31 ) );
This will create a Date object for 3/31/2015 UTC
and be consistent across all browsers regardless of their default timezone.
Internally, the date inside ex
will still be converted in the user's local timezone. So if you read values from it, say the date, it will be relative to the user's browser time.
So if you need to read the time back out in UTC, you can do something like this:
ex.getUTCYear(); // 2015
ex.getUTCMonth(); // 3
ex.getUTCDate(); // 31
This will give you the value back in UTC time.
The short answer is you can't.
A Date object is just an accessor to the system time settings (so it will use the local puter timezone anyway). You can then manipulate your dates by substracting the local timezone using getTimezoneOffset(), or forcing a time with setUTCHours().
However if you can wele only one TimeZone accross your applcation, you can get date time at that paticular timezone using moment.js:
moment().tz("America/Los_Angeles").format();
If you pass the date as a string it creates the date in UTC.
const t1 = new Date(2024,11,12) // 11 because month starts at 0
// -> '2024-12-11T23:00:00.000Z' (I am in UTC+1)
const t2 = new Date("2024-12-12")
// '2024-12-12T00:00:00.000Z'
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743677378a4488794.html
评论列表(0条)