js 獲取時間

2021-10-19 23:35:40 字數 2057 閱讀 4306

1獲取當前時間

let date =

newdate()

;// 時間戳

console.

log(date)

;// wed feb 24 2021 11:28:56 gmt+0800 (中國標準時間)

// 當前年

console.

log(date.

getfullyear()

);// 2021

// 當前月份(0-11,0代表1月)

console.

log(date.

getmonth()

);// 1

// 當前日(1-31)

console.

log(date.

getdate()

);// 24

//當前小時(0-23)

console.

log(date.

gethours()

);// 11

// 當前分鐘(0-59)

console.

log(date.

getminutes()

);// 28

// 當前秒(0-59)

console.

log(date.

getseconds()

);// 56

// 當前毫秒(0-999)

console.

log(date.

getmilliseconds()

);// 902

// 當前時間(從1970.1.1開始的毫秒數)

console.

log(date.

gettime()

);// 1614137336902

// 當前年/月/日 上/下午 時:分:秒

console.

log(date.

tolocalestring()

);// 2021/2/24上午11:28:56

// 當前年/月/日

console.

log(date.

tolocaledatestring()

);// 2021/2/24

// 上/下午 當前時:分:秒

console.

log(date.

tolocaletimestring()

);// 上午11:28:56

2 按給定引數建立日期物件

new date( year, month, date, hrs, min, sec)

console.

log(

newdate

(2021,0

,31,14

,59,59

));// sun jan 31 2021 14:59:59 gmt+0800 (中國標準時間)

console.

log(

newdate

("2021-1-31 14:59:59"))

;// sun jan 31 2021 14:59:59 gmt+0800 (中國標準時間)

console.

log(

newdate

("2021/1/31 14:59:59"))

;// sun jan 31 2021 14:59:59 gmt+0800 (中國標準時間)

console.

log(

newdate

("2021-1-31"))

;// sun jan 31 2021 00:00:00 gmt+0800 (中國標準時間)

console.

log(

newdate

("2021/1/31"))

;// sun jan 31 2021 00:00:00 gmt+0800 (中國標準時間)

console.

log(

newdate

("14:59:59"))

;// invalid date

js獲取時間

js獲取時間 var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31 myd...

js時間獲取

1 獲取系統時間 var date new date 2 利用系統時間獲取年月日 時分秒 星期 不是getyear var year time.getfullyear 因為獲取的月份是0 11,所以要 1 var month time.getmonth 1 不是getday var day time...

js 獲取時間

var date new date date.getyear 這個方法獲取年份時是從1900年開始計算的,要得到最終年份要再加上1900 date.getfullyear 獲取完整的年份 date.getmonth 1 獲取當前月份 0 11,0代表1月 所以 1 date.getdate 獲取當前...