首页 > 代码库 > 将/Date(...)格式转换为yyyy-MM-dd型日期格式

将/Date(...)格式转换为yyyy-MM-dd型日期格式

function ChangeDateFormat(time) {

    if (time != null) {
        var date = new Date(parseInt(time.replace("/Date(", "").replace(")/", ""), 10));
        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 "";
}

将/Date(...)格式转换为yyyy-MM-dd型日期格式