JavaScript中常用的日期處理函數有以下幾個:
new Date()
:創建一個表示當前時間的Date對象。
Date.now()
:返回當前時間的毫秒數。
dateObj.getFullYear()
:獲取日期對象中的年份。
dateObj.getMonth()
:獲取日期對象中的月份(0表示一月,11表示十二月)。
dateObj.getDate()
:獲取日期對象中的日期(1-31)。
dateObj.getDay()
:獲取日期對象中的星期幾(0表示星期日,6表示星期六)。
dateObj.getHours()
:獲取日期對象中的小時數(0-23)。
dateObj.getMinutes()
:獲取日期對象中的分鐘數(0-59)。
dateObj.getSeconds()
:獲取日期對象中的秒數(0-59)。
dateObj.getTime()
:獲取日期對象中的毫秒數(自1970年1月1日以來的毫秒數)。
dateObj.getTimezoneOffset()
:獲取當前時區與UTC時間的分鐘差。
dateObj.setFullYear(year)
:設置日期對象中的年份。
dateObj.setMonth(month)
:設置日期對象中的月份。
dateObj.setDate(day)
:設置日期對象中的日期。
dateObj.setHours(hour)
:設置日期對象中的小時數。
dateObj.setMinutes(minute)
:設置日期對象中的分鐘數。
dateObj.setSeconds(second)
:設置日期對象中的秒數。
dateObj.setMilliseconds(millisecond)
:設置日期對象中的毫秒數。
這些函數可以用于獲取和設置日期對象中的各個部分,以及執行常見的日期運算和比較操作。