在程序中,從數據庫中讀取到的日期時間類型數據通常是這種格式:"/Date(1355109408000+0800)/"數據庫
要通過js函數處理變爲格式:'2012-12-10 11:05:21'函數
用此js函數便可搞定:orm
function timeFormatter(value) {get
var da = new Date(parseInt(value.replace("/Date(", "").replace(")/" , "").split( "+")[0]));it
return da.getFullYear() + "-" + (da.getMonth() + 1) + "-" + da.getDate() + " " + da.getHours() + ":" + da.getMinutes() + ":" + da.getSeconds();io
}function