为什么不同的日期在 JavaScript 中显示相同?
<script type="text/javascript">
alert(new Date(2010,8,31));
alert(new Date(2010,9,1));
</script>
尝试上面的代码。浏览器在两条消息中显示相同的日期。为什么???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Date(2010,8,31) 表示“2010 年 10 月 1 日”并且
Date(2010,9,1) 也表示“2010 年 10 月 1 日”,
因为
在 Date(yyyy,mm,dd) 中,mm 可以设置为 0 到 11 而不是 1 到 12,
因此如果 mm 为 8 则表示八月和八月有30天。
在这种情况下,如果您在 dd 中输入 31,则它指向“August 30”+ 1
Date(2010,8,31) means "October 1, 2010" and
Date(2010,9,1) also means "October 1, 2010"
Because
in Date(yyyy,mm,dd), mm can be set from 0 to 11 not from 1 to 12
so that if mm is 8 means august and august have 30 days.
on this case, if you input 31 in dd, it points "August 30" + 1
你真的看过警报吗?它显示十月的日期。月份从零开始。这意味着您的第一行实际上是 9 月 31 日 - 该日期并不存在,并且会转至第二天,即 10 月 1 日。您的第二行也是 10 月 1 日。
Did you actually look at the alert? It displays a date in october. The months are zero-based. This means your first line is actually September 31 - which does not exist, and is wrapped to the next day, October 1. Your second line is also October 1.
因为 javascript 月份是从 0 开始的,例如 0=一月,1=二月
由于 9 月 30 日是该月的最后一天,因此 javascript 将其更正为 10 月 1 日。
Because javascript months are 0 based, like 0=Jan, 1=Feb
Since September 30 is the last day of the month, javascript corrects it to October 1.