为什么不同的日期在 JavaScript 中显示相同?

发布于 2024-09-16 05:43:26 字数 173 浏览 9 评论 0 原文

<script type="text/javascript">
alert(new Date(2010,8,31));
alert(new Date(2010,9,1));
</script>

尝试上面的代码。浏览器在两条消息中显示相同的日期。为什么???

<script type="text/javascript">
alert(new Date(2010,8,31));
alert(new Date(2010,9,1));
</script>

Try the code above. The browser display the same date in both message. Why???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

千柳 2024-09-23 05:43:26

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

左秋 2024-09-23 05:43:26

你真的看过警报吗?它显示十月的日期。月份从零开始。这意味着您的第一行实际上是 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.

眼趣 2024-09-23 05:43:26

因为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文