- 代碼:
/*
@desc:時(shí)間綴轉(zhuǎn)時(shí)間字符串
@param time 時(shí)間綴,長度為10
@return 時(shí)間字符串 格式為:2018-06-10 22:00:00
*/
function timetostr(time){
this.time = time
/*
@desc:內(nèi)部方法,若數(shù)字小于10補(bǔ)0
@param input 傳入數(shù)值
@return ret 格式化后的數(shù)值
*/
this.parsetime = function(input){
var ret
if(input >= 0 && input < 10){
ret = '0'+input
}else{
ret = input
}
return ret
}
/*
@desc:主方法,獲取轉(zhuǎn)換后的時(shí)間
@return ret 時(shí)間字符串,格式為:2018-06-10 22:00:00
*/
this.get = function(){
var time = (this.time)?(this.time):(Math.round(new Date().getTime()/1000))
var date = new Date(time*1000)
var year = this.parsetime(date.getFullYear())
var month = this.parsetime(date.getMonth())
var day = this.parsetime(date.getDate())
var hour = this.parsetime(date.getHours())
var minute = this.parsetime(date.getMinutes())
var second = this.parsetime(date.getSeconds())
var ret = year+'-'+month+'-'+day+' '+hour+':'+minute+':'+second
return ret
}
}
- 測試:
var timetostr = new timetostr(1528593779)
var ret = timetostr.get()
console.log(ret)
- 輸出:
2018-05-10 09:22:59
本文名稱:javascript時(shí)間綴轉(zhuǎn)時(shí)間字符串
網(wǎng)頁鏈接:
http://weahome.cn/article/ihoddd.html