gpt4 book ai didi

javascript - toDateString() 减少我的日期

转载 作者:数据小太阳 更新时间:2023-10-29 04:27:03 25 4
gpt4 key购买 nike

对于下面的代码:

var d = new Date("2013-07-01");
console.log(d.toDateString());

它输出 Sun Jun 30 2013,比输入的少一天。对象怎么了?实际存储的是什么日期?

最佳答案

日期被解析为 UTC 日期,但 toDateString() 输出本地时区的时间。

试试这个

var d = new Date(2013, 6, 1); //6 instead of 7 because the mont argument is  zero-based
console.log(d.toDateString());

What date is actually stored?

2013-07-01 00:00:00 UTC

关于javascript - toDateString() 减少我的日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17959660/

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