码迷,mamicode.com
首页 > Web开发 > 详细

jquery格式化json格式日期

时间:2017-08-08 00:35:13      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:通过   类型   格式   jquery   cti   转换   ret   日期   bsp   

有时候后台传过来的json里的日期会变成/Date(1498297711000 0800)/这种类型的日期格式,前台可以通过jquery进行日期格式化:

function ChangeDateFormat(cellval) {
    var date = new Date(parseInt(cellval.replace("/Date(", "").replace(")/", ""), 10));
    //getMonth()从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;
        }

 转换完成后的日期格式为yyyy-MM-dd

jquery格式化json格式日期

标签:通过   类型   格式   jquery   cti   转换   ret   日期   bsp   

原文地址:http://www.cnblogs.com/OldRion/p/7302238.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!