json时间格式化(JS)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_34523482/article/details/77110167
function formatDate(jsonDate) {
    //json日期格式转换为正常格式
    var jsonDateStr = jsonDate.toString();
    try {
        var date = new Date(parseInt(jsonDateStr.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;//年月日时分秒
        return date.getFullYear() + "-" + month + "-" + day 
    } catch (ex) {
        return "时间格式转换错误";
    }
}

猜你喜欢

转载自blog.csdn.net/qq_34523482/article/details/77110167