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.log(d.getday()) //獲取星期幾 0表示週日
console.log(d.getmonth() + 1) //獲取當前時間的月份,0表示1月,1表示2月
console.log(d.getfullyear()) //獲取日期物件的年份
console.log(d.gethours()) //獲取時
console.log(d.getminutes()) //獲取分
console.log(d.getseconds()) //獲取秒
console.log(d.gettime()) //獲取當前時間日期物件的時間戳(毫秒數)
// tue jul 09 2019 09: 06: 52 gmt + 0800(中國標準時間)
// 78 sat dec 03 2016 11: 11: 11 gmt + 0800(中國標準時間)
// 9
// 2
// 7
// 2019
// 9
// 6
// 52
// 1562634412663
Date類的相關方法記錄
1.date類中的時間單位是毫秒,system.currenttimemills 方法就是獲取當前時間到1970年1月1日0時0分0秒 西方時間 的毫秒數。public class test6 2.因為中國在東八區,所以時間原點其實是1970年1月1日8時0分0秒。3.date date new d...
Date物件方法
建立date new date date物件方法 get系列 getdate 返回乙個月中的某一天 1 31 getday 返回一周中的某一天 0 6 getfullyear 返回四位數的年份 getmonth 返回月份 0 11 0是一月 gethours 返回的是當前的小時 0 23 getmi...
Date相關日期格式轉換
var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 所以獲取當前月份是mydate.getmonth 1 mydate.ge...