javascript 獲取年月日的方法有3種:date 對象:提供 year、month、day 屬性。date.now():獲取毫秒數并轉換為 date 對象。intl.datetimeformat:提供更靈活的日期格式化。
如何使用 JavaScript 獲取年月日
JavaScript 提供了多種方法來獲取當前的年月日。以下是三種常見的方法:
Date 對象
Date 對象包含了日期和時間信息。要獲取年月日,可以使用以下屬性:
const date = new Date(); const year = date.getFullYear(); const month = date.getMonth() + 1; // 月份從 0 開始,所以需要加 1 const day = date.getDate();
登錄后復制
Date.now()
Date.now() 返回當前時間自 1970 年 1 月 1 日 00:00:00 UTC 以來經過的毫秒數。要獲取年月日,需要將毫秒數轉換為日期對象:
const milliseconds = Date.now(); const date = new Date(milliseconds); const year = date.getFullYear(); const month = date.getMonth() + 1; const day = date.getDate();
登錄后復制
Intl.DateTimeFormat
Intl.DateTimeFormat 提供了一種更靈活的方式來格式化日期。要獲取年月日,可以使用以下代碼:
const date = new Date(); const options = { year: 'numeric', month: '2-di<a style="color:#f60; text-decoration:underline;" href="https://www.php.cn/zt/15841.html" target="_blank">git</a>', day: '2-digit', }; const formatter = new Intl.DateTimeFormat('en-US', options); const formattedDate = formatter.format(date);
登錄后復制
formattedDate 將包含類似于 “2023-02-15” 的格式化的日期字符串。