js處理數據庫時間格式
數據庫返回時間格式:/Date(1332919782070)/
方法:
function ChangeDateFormat(val) { if (val != null) { var date = new Date(parseInt(val.replace("/Date(", "").replace(")/", ""), 10)); //月份為0-11,所以+1,月份小於10時補個0 var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1; var currentDate = date.getDate() < 10 ? "0" + date.getDate() : date.getDate(); return date.getFullYear() + "-" + month + "-" + currentDate; } return ""; }
原理:
取中間的毫秒數,再轉換成js的Date類型