json返回日期格式化

来源:互联网 发布:ember.js 开发工具 编辑:程序博客网 时间:2024/05/16 08:23
//json日期格式转换为正常格式

function jsonDateFormat(jsonDate) {    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 "";    }}
转载出处
0 0