如何獲取 javascript 中的年月日:獲取當前年月日:使用 date 對象的 getfullyear(), getmonth(), getdate() 方法。獲取特定日期的年月日:使用 date 構造函數,傳入時間戳或日期字符串。獲取特定時間戳的年月日:使用 new date(timestamp) 獲取 date 對象,然后使用 getfullyear(), getmonth(), getdate() 方法。獲取當前時間戳的年月日:使用 date.now() 獲取當前時間戳,然后使用 ne
如何在 JavaScript 中獲取年月日
獲取當前年月日:
使用 Date 對象的 getFullYear(), getMonth() 和 getDate() 方法。
const now = new Date(); const year = now.getFullYear(); const month = now.getMonth() + 1; // 月份從 0 開始,因此需要加 1 const day = now.getDate(); console.log(`${year}-${month}-${day}`);
登錄后復制
獲取特定日期的年月日:
使用 Date 對象的構造函數,傳入時間戳或日期字符串。
const timestamp = 1659878400000; // 2022 年 8 月 15 日 16:00:00 const date = new Date(timestamp); const year = date.getFullYear(); const month = date.getMonth() + 1; const day = date.getDate(); console.log(`${year}-${month}-${day}`);
登錄后復制
獲取特定時間戳的年月日:
使用 new Date(timestamp) 獲取 Date 對象,然后使用 getFullYear(), getMonth() 和 getDate() 方法提取年月日。
const timestamp = 1659878400000; const date = new Date(timestamp); const year = date.getFullYear(); const month = date.getMonth() + 1; const day = date.getDate(); console.log(`${year}-${month}-${day}`);
登錄后復制
獲取當前時間戳的年月日:
使用 Date.now() 獲取當前時間戳,然后使用 new Date(timestamp) 獲取 Date 對象,最后再使用 getFullYear(), getMonth() 和 getDate() 方法提取年月日。
const timestamp = Date.now(); const date = new Date(timestamp); const year = date.getFullYear(); const month = date.getMonth() + 1; const day = date.getDate(); console.log(`${year}-${month}-${day}`);
登錄后復制