var time = entry.createtime; //時間戳(13位字串)
var createtime = new date().settime(time) //通過時間戳設定時間值
// var date = createtime.format("yyyy-mm-dd hh:mm:ss") //測試下這種方式
newcell8.innerhtml = new date(createtime).format("yyyy-mm-dd hh:mm:ss")
// 對date的擴充套件,將 date 轉化為指定格式的string
// 月(m)、日(d)、小時(h)、分(m)、秒(s)、季度(q) 可以用 1-2 個佔位符,
// 年(y)可以用 1-4 個佔位符,毫秒(s)只能用 1 個佔位符(是 1-3 位的數字)
// 例子:
// (new date()).format("yyyy-mm-dd hh:mm:ss.s") ==> 2006-07-02 08:09:04.423
// (new date()).format("yyyy-m-d h:m:s.s") ==> 2006-7-2 8:9:4.18
date.prototype.format = function (fmt) ;
if (/(y+)/.test(fmt))
fmt = fmt.replace(regexp.$1, (this.getfullyear() + "").substr(4 - regexp.$1.length));
for (var k in o)
if (new regexp("(" + k + ")").test(fmt))
fmt = fmt.replace(regexp.$1, (regexp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
return fmt;
}
JS將時間戳轉換為日期時間格式
最近專案需要在前端將乙個13位的時間戳顯示成日期格式,在網上查了很多都不符合要求,只有乙個是能滿足要求的,在這記錄一下,說不定以後還用的著。13位時間戳改為yyyy mm dd hh mm ss 格式 目標時間戳 1516324500000 將時間戳改為yyyy mm dd hh mm ss fun...
時間格式轉換 時間戳
時間 附 dateformat parser new dateformat eeee,mmmm dd,yyyy dateformat formatter new dateformat eee.mm dd dateformat sdf new dateformat yyyy mm dd hh mm s...
JS 時間戳時間格式相互轉換
var t 2020 03 18 17 24 04 var t new date t 將指定日期轉換為標準日期格式。fri dec 08 2017 20 05 30 gmt 0800 中國標準時間 console.log 轉化後的時間戳 t.gettime 將轉換後的標準日期轉換為時間戳。conso...