对于以下代码:
var d = new Date("2013-07-01"); console.log(d.toDateString());
它输出2013年3月30日的Sun Jun,这比输入的少了一天.对象怎么了?实际存储的日期是什么?
解决方法
日期被解析为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