码迷,mamicode.com
首页 > 其他好文 > 详细

时间格式转换—将后台返回的/Date(1448954018000)/格式转换为正常的时间格式

时间:2016-12-22 19:34:16      阅读:307      评论:0      收藏:0      [点我收藏+]

标签:bsp   new   date()   style   int   span   时间   parse   replace   

用JS实现方法:

function ChangeDateFormat(cellval) {

            var date = new Date(parseInt(cellval.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;

        }

 

时间格式转换—将后台返回的/Date(1448954018000)/格式转换为正常的时间格式

标签:bsp   new   date()   style   int   span   时间   parse   replace   

原文地址:http://www.cnblogs.com/shuai7boy/p/6211983.html

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