js怎么格式化時(shí)間呢?不知道的小伙伴來(lái)看看小編今天的分享吧!
js怎么格式化時(shí)間有三種格式:
格式一: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 ;
}
格式二: 2018-1-29
function myformatter(date){
var strDate = date.getFullYear()+"-";
strDate += date.getMonth()+1+"-";
strDate += date.getDate();
alert("strDate:"+strDate);
return strDate ;
}
格式三:2018-02-05 (月份和日期小于10的時(shí)候,在前面自動(dòng)加零)
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 ;
}
以上就是小編今天的分享了,希望可以幫助到大家。
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com