📅  最后修改于: 2023-12-03 15:38:53.759000             🧑  作者: Mango
在 JavaScript 中,我们可以使用内置的日期对象 Date
来获取当前的日期、月份和年份。以下是一些常用的方法来获取日期和时间:
要获取当前日期,我们可以创建一个新的 Date
对象并将其赋值给一个变量。然后我们可以使用 getDate()
方法来获取日期。
const currentDate = new Date();
const dayOfMonth = currentDate.getDate();
console.log(dayOfMonth); // 输出当前日期
要获取当前月份,我们可以像获取当前日期一样创建一个新的 Date
对象并将其赋值给一个变量。然后我们可以使用 getMonth()
方法来获取月份。
注意:
getMonth()
方法返回的值是从 0 开始的,即 0 表示一月,1 表示二月,依此类推。
const currentDate = new Date();
const month = currentDate.getMonth();
console.log(month); // 输出当前月份
要获取当前年份,我们可以像获取当前日期一样创建一个新的 Date
对象并将其赋值给一个变量。然后我们可以使用 getFullYear()
方法来获取年份。
const currentDate = new Date();
const year = currentDate.getFullYear();
console.log(year); // 输出当前年份
以下是一个完整的演示代码,展示如何获取当前的日期、月份和年份:
const currentDate = new Date();
const dayOfMonth = currentDate.getDate();
const month = currentDate.getMonth();
const year = currentDate.getFullYear();
console.log(`今天的日期是 ${year} 年 ${month + 1} 月 ${dayOfMonth} 日`);
输出:
今天的日期是 2021 年 1 月 12 日
以上是如何获取当前的日、月和年的 JavaScript。希望能够帮助到你!