JavaScript 中的時間對象主要有 `Date` 和 `Moment.js`。
1. `Date` 對象:`Date` 是 JavaScript 原生提供的時間對象,用于表示和操作日期和時間。它可以表示從 1970 年 1 月 1 日開始的毫秒數,可以獲取年、月、日、時、分、秒等各個時間組成部分,還可以進行日期和時間的計算、比較和格式化等操作。以下是 `Date` 對象的一些常見用法:
const now = new Date(); // 當前時間
const year = now.getFullYear(); // 獲取年份
const month = now.getMonth(); // 獲取月份(注意:月份從 0 開始,0 表示一月)
const date = now.getDate(); // 獲取日期
const hours = now.getHours(); // 獲取小時
const minutes = now.getMinutes(); // 獲取分鐘
const seconds = now.getSeconds(); // 獲取秒鐘
const timestamp = now.getTime(); // 獲取時間戳(毫秒數)
const tomorrow = new Date(year, month, date + 1); // 創建一個表示明天的 Date 對象
const formattedDate = now.toLocaleDateString(); // 格式化日期
const formattedTime = now.toLocaleTimeString(); // 格式化時間
const formattedDateTime = now.toLocaleString(); // 格式化日期和時間
2. `Moment.js`:`Moment.js` 是一個流行的 JavaScript 庫,用于處理、解析和顯示日期和時間。它提供了更多的日期和時間操作方法,具有更友好的 API 和更豐富的功能,如日期的解析、格式化、計算、比較、時區處理等。以下是 `Moment.js` 的一些示例用法:
const now = moment(); // 當前時間
const year = now.year(); // 獲取年份
const month = now.month(); // 獲取月份(從 0 開始)
const date = now.date(); // 獲取日期
const hours = now.hours(); // 獲取小時
const minutes = now.minutes(); // 獲取分鐘
const seconds = now.seconds(); // 獲取秒鐘
const tomorrow = now.add(1, 'day'); // 創建一個表示明天的 Moment 對象
const formattedDate = now.format('YYYY-MM-DD'); // 格式化日期
const formattedTime = now.format('HH:mm:ss'); // 格式化時間
const formattedDateTime = now.format('YYYY-MM-DD HH:mm:ss'); // 格式化日期和時間
注意,`Moment.js` 是一個第三方庫,需要單獨引入和使用。它提供了更強大和便捷的日期和時間處理能力,特別適用于復雜的日期和時間操作需求。
以上是 JavaScript 中常用的時間對象及其用法。根據具體的需求,可以選擇使用原生的 `Date` 對象或引入第三方庫 `Moment.js` 來處理日期和時間。