海詩網(wǎng) 知識百科 js格式化時間(js如何格式化時間)

js格式化時間(js如何格式化時間)

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();

return strDate ;

}

js如何格式化時間

格式二:2018年1月29日

function myformatter(date){

var strDate=date.getFullYear()+-;

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

strDate +=date.getDate();

return strDate ;

}

js如何格式化時間

格式3: 2018-02-05(當(dāng)月份和日期小于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格式化時間最新內(nèi)容,希望能幫到您!更多相關(guān)內(nèi)容歡迎關(guān)注。

本文來自網(wǎng)絡(luò),不代表海詩網(wǎng)立場,轉(zhuǎn)載請注明出處:http://x91880.com/n/169098.html
      

outputstream轉(zhuǎn)inputstream(outputstream轉(zhuǎn)inputstream)

發(fā)表回復(fù)
聯(lián)系我們
聯(lián)系我們

在線咨詢: QQ交談

郵箱: 3587015498@qq.com

工作時間:周一至周五,9:00-17:30,節(jié)假日休息

關(guān)注微信
微信掃一掃關(guān)注我們
微信掃一掃關(guān)注我們
關(guān)注微博
返回頂部