js获取年月、日期、年月日
要在JavaScript中获取当前的年份、月份和日期,你可以使用Date
对象的相应方法。以下是获取这些信息的代码示例:
// 获取当前日期对象
const now = new Date();
// 获取年份
const year = now.getFullYear();
// 获取月份(0表示1月,以此类推,所以显示时需要+1)
const month = now.getMonth() + 1;
// 获取日期(1到31之间的数字)
const date = now.getDate();
// 输出结果
console.log(`年份: ${year}`);
console.log(`月份: ${month}`);
console.log(`日期: ${date}`);
// 如果需要年月日作为一个字符串
const yearMonth = `${year}-${month.toString().padStart(2, '0')}`;
const dateString = `${year}-${month.toString().padStart(2, '0')}-${date.toString().padStart(2, '0')}`;
console.log(`年月: ${yearMonth}`);
console.log(`年月日: ${dateString}`);
padStart
方法用于确保月份和日期是两位数的字符串,如果不足两位数前面会补零。
评论已关闭