jquery中将序列化成json的日期转化为普通日期格式
Posted xifengmo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery中将序列化成json的日期转化为普通日期格式相关的知识,希望对你有一定的参考价值。
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 currentDay = date.getDate() <10 ? "0" +date.getDate() : date.getDate(); var currentHour = date.getHours() < 10 ? "0" +date.getHours() :date.getHours(); var currentMinute = date.getMinutes() < 10 ? "0" +date.getMinutes() :date.getMinutes(); var currentSecond = date.getSeconds() < 10 ? "0" +date.getSeconds() :date.getSeconds(); return date.getFullYear() + ‘-‘ + month + "-" + currentDay + " " + currentHour+ ":" + currentMinute + ":" + currentSecond;
‘
以上是关于jquery中将序列化成json的日期转化为普通日期格式的主要内容,如果未能解决你的问题,请参考以下文章
在.net core 的webapi项目中将对象序列化成json
NET Framework 3 5中序列化成JSON数据及JSON数据的反序列化,以及jQuery的调用JSON