.net mvc中,通过return Json(DateTime.Now); 返回到视图时,日期格式变成这样,"/Date(1245398693390)/",
如果要显示指定的日期时间格式,例如想C#中,DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
var date = new Date(parseInt("/Date(1317830400000)/".replace(/\/Date(−?\d+)\//, ‘$1‘))); alert(date.format("yyyy-mm-dd HH:MM:ss")); alert(dateFormat(date, "yyyy-mm-dd HH:MM:ss"));
需要date.format.js文件
下载地址http://stevenlevithan.com/assets/misc/date.format.js
相关说明http://blog.stevenlevithan.com/archives/date-time-format
时间: 2024-10-25 00:35:23