时间格式转换—将后台返回的/Date(1448954018000)/格式转换为正常的时间格式
Posted 一明
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间格式转换—将后台返回的/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)/格式转换为正常的时间格式的主要内容,如果未能解决你的问题,请参考以下文章
javaScript 时间转换,将后台返回的时间为一串数字转成正常格式
js 我从后台取到的时间格式为2012-03-07T11:58:34 我想在前台显示格式是11:58:34 怎么办