首页 > 代码库 > 时间格式转换—将后台返回的/Date(1448954018000)/格式转换为正常的时间格式

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

用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)/格式转换为正常的时间格式