js時間格式轉換

2021-10-12 06:55:49 字數 1403 閱讀 6155

1.獲取時間戳:

var time=

getdate()

;

2.獲取當前年份:(用 padstart 方法,不足兩位數,在前面新增0,以下同理)

var years=time.

getfullyear()

;

3.獲取當前月份:( 0 - 11,0代表一月,所以獲取當前月份time.getmonth( ) + 1;)

var months=

(time.

getmonth()

+1).

tostring()

.padstart(2

,"0"

);

4.獲取當前日期( 1 - 31 )

var dates=time.

getdate()

.tostring()

.padstart(2

,"0"

);

5.獲取當前小時數:( 0 - 23 )

var hours=time.

gethours()

.tostring()

.padstart(2

,"0"

);

6.獲取當前分鐘數:( 0 - 59 )

var minutes=time.

getminutes()

.tostring()

.padstart(2

,"0"

);

7.獲取當前秒數:( 0 - 59 )

var senconds=time.

getseconds()

.tostring()

.padstart(2

,"0"

);

8.根據自己實際情況獲取毫秒數:( 0 - 999 )

var milliseconds=time.

getmilliseconds()

.tostring()

.padstart(2

,"0"

);

9.建立函式,將獲取的按時間放入函式,按格式輸出並return,

function

times()

年$月$

日$:$

:$` return mytime;

}

10.最後呼叫函式並列印到控制台;

console.

log(

times()

);

js時間格式轉換

1.當前系統區域設定格式 tolocaledatestring和tolocaletimestring 例子 new date tolocaledatestring new date tolocaletimestring 結果 2008年1月29日 16 13 11 2.普通字串 todatestri...

js時間格式的轉換

取得當前日期,格式 yyyy mm dd functiongetcurrentdate 取得當前日期,格式 yyyy mm dd hh mm functiongetcurrenttime 將日期型別轉換成字串型格式 yyyy mm dd functionchangedatetostring date...

JS將時間戳轉換時間格式

var time entry.createtime 時間戳 13位字串 var createtime new date settime time 通過時間戳設定時間值 var date createtime.format yyyy mm dd hh mm ss 測試下這種方式 newcell8.in...