时间js转换方法Date("149...") 转成 2016-7-12 21:23:34 009

 function timeFormatter(value) {
    var da = new Date(parseInt(value.replace("/Date(", "").replace(")/" , "").split( "+")[0]));
    return da.getFullYear() + "-" + (da.getMonth() + 1) + "-" + da.getDate();
//     + " " + da.getHours() + ":" + da.getMinutes() + ":" + da.getSeconds();
}
上一篇:利用Python获取统计自己的qq群成员信息


下一篇:剑指offer(20)包含min函数的栈