開心生活站

位置:首頁 > IT科技 > 

js格式化當前時間

IT科技2.42W

js怎麼格式化時間有三種格式:

格式一:2018-1-29-10:34:49

var curr_time = new Date();

Myformatter(curr_time);

function myformatter(date){         

var strDate = date.getFullYear()+"-"; 

strDate += date.getMonth()+1+"-";       

strDate += date.getDate()+"-";      

strDate += date.getHours()+":";     

strDate += date.getMinutes()+":";       

strDate += date.getSeconds();     

alert("strDate:"+strDate);      

return strDate ;  

js格式化當前時間

格式二: 2018-1-29

function myformatter(date){  

var strDate = date.getFullYear()+"-";

strDate += date.getMonth()+1+"-";

strDate += date.getDate();

alert("strDate:"+strDate);

return strDate ;

}

js格式化當前時間 第2張

格式三:2018-02-05   (月份和日期小於10的時候,在前面自動加零)

function myformatter(date){  

var strDate = date.getFullYear()+"-";

if(date.getMonth()<10){

var s = date.getMonth()+1+"-";

strDate += "0"+s;

}else{

strDate += date.getMonth()+1+"-";

}

if(date.getDate()<10){

strDate += "0"+date.getDate();

}else{

strDate += date.getDate();

}

return strDate ;


標籤:格式化 js 時間