JS——Date日期物件
阿新 • • 發佈:2020-07-15
1.Date物件的四種建立方法分別是什麼?
new Date()
new Date(milliseconds)
new Date(dateString)
new Date(year,month,day,hours,minutes,seconds,milliseconds)
1.1 dateString時間字串的三種格式格式
通用格式:年/月/日 空格 時:分:秒(示例:2020/07/15 16:53:56)
短橫杆式:xxxx-xx-xx xx:xx:xx(chrome firefox opera)
斜杆式:xxxx/xx/xx xx:xx:xx(chrome firefox opera safari ios(蘋果手機只認此格式))
點式:xxxx.xx.xx xx:xx:xx(chrome opera)
2.兩個Date物件屬性及其作用是什麼?
constructor:返回對建立此物件的 Date 函式的引用。Date物件的函式原型。
myDate.constructor;
prototype:建立一個新的日期物件方法
Date.prototype.methods
3.常用的Date物件方法有哪些?
getFullYear() 從 Date 物件以四位數字返回年份。 getMonth() 從 Date 物件返回月份 (0 ~ 11)。 getDate() 從 Date 物件返回一個月中的某一天 (1 ~ 31)。 getHours() 返回 Date 物件的小時 (0 ~ 23)。 getMinutes() 返回 Date 物件的分鐘 (0 ~ 59)。 getSeconds() 返回 Date 物件的秒數 (0 ~ 59)。 getMilliseconds() 返回 Date 物件的毫秒(0 ~ 999)。
getTime() 返回 1970 年 1 月 1 日至今的毫秒數。
getDay() 從 Date 物件返回一週中的某一天 (0 ~ 6)。