JavaScript日期格式轉換(huàn)
今(jīn)天做頁麵需要把(bǎ)JS裏麵的Date規範輸出為“YYYY-MM-DD HH:mm:SS”的字符串,本來想上網百度(dù)一個(gè)現成(chéng)的,結(jié)果搜出來的(de)全是(shì)錯的 :(
自己(jǐ)寫了(le)一個,貼在這裏(lǐ),方便後(hòu)麵搜索(suǒ)的人:
把下麵的代碼複製(zhì)到你(nǐ)的JS裏(lǐ),Date對象就可以直接(jiē)調(diào)用toCommonCase():
Date.prototype.toCommonCase=function(){
var xYear=this.getYear();
xYear=xYear+1900;
var xMonth=this.getMonth()+1;
if(xMonth<10){
xMonth="0"+xMonth;
}
var xDay=this.getDate();
if(xDay<10){
xDay="0"+xDay;
}
var xHours=this.getHours();
if(xHours<10){
xHours="0"+xHours;
}
var xMinutes=this.getMinutes();
if(xMinutes<10){
xMinutes="0"+xMinutes;
}
var xSeconds=this.getSeconds();
if(xSeconds<10){
xSeconds="0"+xSeconds;
}
return xYear+"-"+xMonth+"-"+xDay+" "+xHours+":"+xMinutes+":"+xSeconds;
}
關鍵詞(cí):JavaScript
閱(yuè)讀本文(wén)後您(nín)有(yǒu)什麽感想? 已有 人(rén)給出評價!
- 1
- 1
- 1
- 1
- 1
- 1