gpt4 book ai didi

javascript - Date.prototype.setMonth() 更改时区偏移量?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:00:15 25 4
gpt4 key购买 nike

这只会发生在 setMonth() 方法中,而不会发生在其他 set*() 方法中。

这是我的意思的一个例子:

var date = new Date();
date.getTimezoneOffset(); // -60

date.setMonth(5);
date.getTimezoneOffset(); // -120

这是预期的行为吗? There's nothing mentioned about this on MDN.

最佳答案

getTimezoneOffset method在 DST 期间返回不同的值,并且在 5DST 与现在不同。

The time zone offset returned is the one that applies for the Date that it's called on. Where the host system is configured for daylight saving, the offset will change depending on the date and time that the Date represents and that daylight saving applies.

var date = new Date();
console.log(date.getTimezoneOffset());

date.setMonth(0);
console.log(date.getTimezoneOffset());

date.setMonth(5);
console.log(date.getTimezoneOffset());

顺便说一句,如果您将在 6 月份运行此代码 - 您会发现两者没有区别:)

关于javascript - Date.prototype.setMonth() 更改时区偏移量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41453687/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com