new date() 返回標準時間格式字串
date.now() 返回當前時間到2023年的毫秒數
date.parse() 傳入乙個日期字串,返回2023年到這個日期的毫秒數
mydate.getfullyear() 返回乙個年份
mydate.getmonth()+1 返回乙個月份(0-11) 0代表每一年的第乙個月
mydate.getdate() 返回乙個日期物件中的具體的乙個月中的哪一日(1-31)
mydate.getday() 返回乙個具體日期中一周的第幾天也就是週幾(0-6)0代表週日
mydate.gettime() 返回當前時間距離格林威治時間(1970.1.1)的毫秒數
mydate.gethours() 返回乙個小時數
mydate.getminutes() 返回分鐘數
mydate.getseconds() 返回秒數
mydate.getmilliseconds() 返回乙個具體日期物件現在的毫秒數(0-999)
mydate.todatestring() 返回乙個日期物件的簡單字串
Date方法小總結
date 是乙個建構函式,專門用來處理日期的初始化方式 1.接收乙個引數 引數是字串,必須符合日期格式 var date new date 2017 09 22 07 22 33 console.log date 2.接收2個引數 var date new date 2006 0 console.l...
php中date 函式使用的方法
a am 或是 pm a am 或是 pm d 幾日,二位數字,若不足二位則前面補零 如 01 至 31 d 星期幾,三個英文本母 如 fri f 月份,英文全名 如 january h 12 小時制的小時 如 01 至 12 h 24 小時制的小時 如 00 至 23 g 12 小時制的小時,不足...
Date相關方法
var d new date console.log d 建立乙個指定的時間物件 日期的格式 月份 日 年 時 分 秒 var d2 new date 12 03 2016 11 11 11 console.log d2 console.log d.getdate 獲取當前時間是幾日 console...