JavaScript中有多種方法可以獲取日期,以下是一些常用的方法:
Date()
構造函數獲取當前日期和時間:const currentDate = new Date();
getFullYear()
、getMonth()
、getDate()
等方法獲取特定日期的年、月、日等信息:const year = currentDate.getFullYear();
const month = currentDate.getMonth(); // 月份從0開始,0表示一月
const day = currentDate.getDate();
getDay()
方法獲取星期幾的數值(0表示星期日,1表示星期一,以此類推):const dayOfWeek = currentDate.getDay();
toLocaleString()
方法獲取本地化的日期和時間字符串:const localDateTimeString = currentDate.toLocaleString();
toUTCString()
方法獲取UTC格式的日期和時間字符串:const utcDateTimeString = currentDate.toUTCString();
getTime()
方法獲取距離1970年1月1日的毫秒數:const milliseconds = currentDate.getTime();
const formattedDate = moment(currentDate).format('YYYY-MM-DD');
這些只是JavaScript中獲取日期的常用方法,還有其他一些方法可以根據具體需求使用。