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