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

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
  • 2021-09-24
  • 2022-12-23
  • 2021-12-18
  • 2021-09-29
  • 2022-12-23
猜你喜欢
  • 2022-01-01
  • 2022-12-23
  • 2022-12-23
  • 2021-07-04
  • 2021-12-22
  • 2022-12-23
  • 2021-08-12
相关资源
相似解决方案