以下是示例代碼
第一種效果:
///無時分秒
function jsonDateFormat(jsonDate) {//json日期格式轉換為正常格式
try {
var date = new Date(parseInt(jsonDate.replace("/Date(", "").replace(")/", ""), 10));
var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
var day = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
return date.getFullYear() + "-" + month + "-" + day;
} catch (ex) {
return "";
}
}
第二種效果:
///有時分秒
function jsonDateFormat(jsonDate) {//json日期格式轉換為正常格式
try {
var date = new Date(parseInt(jsonDate.replace("/Date(", "").replace(")/", ""), 10));
var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
var day = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
var hours = date.getHours();
var minutes = date.getMinutes();
var seconds = date.getSeconds();
var milliseconds = date.getMilliseconds();
return date.getFullYear() + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds + "." + milliseconds;
} catch (ex) {
return "";
}
}
總結
以上就是Javascript將JSON日期格式化的全部內容,雖然功能很小,但是很實用。希望對大家的學習工作能有所幫助。