昌鑫号

js格式化时间(js日期格式化yyyymmddhhmmss)

js格式化时间, js如何格式化时间?不知道小伙伴们今天来看看边肖的分享吧!

Js如何格式化时间有三种格式:

格式1: 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日期格式化yyyymmddhhmmss

格式二:2018年1月29日

function myformatter(date){

var strDate=date.getFullYear()+-;

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

strDate +=date.getDate();

alert(strDate:strDate);

return strDate ;

}

js日期格式化yyyymmddhhmmss

格式3: 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格式化时间,以上就是本文为您收集整理的js格式化时间最新内容,希望能帮到您!更多相关内容欢迎关注。

      
上一篇