js处理数据库时间格式/Date(1332919782070)/

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类型

猜你喜欢

转载自www.cnblogs.com/s313139232/p/9202889.html