.net 程序員確定有遇到過,將一個對象json序列化以後Date 字段 就會轉化成 '/Date(1370770323740)/' 這種格式的數據,下面介紹一種在js中,關於時間格式的轉換。程序員
<script> function formatDate(date, format) { if (!date) return; if (!format) format = "yyyy-MM-dd"; switch(typeof date) { case "string": date = new Date(date.replace(/-/, "/")); break; case "number": date = new Date(date); break; } if (!date instanceof Date) return; var dict = { "yyyy": date.getFullYear(), "M": date.getMonth() + 1, "d": date.getDate(), "H": date.getHours(), "m": date.getMinutes(), "s": date.getSeconds(), "MM": ("" + (date.getMonth() + 101)).substr(1), "dd": ("" + (date.getDate() + 100)).substr(1), "HH": ("" + (date.getHours() + 100)).substr(1), "mm": ("" + (date.getMinutes() + 100)).substr(1), "ss": ("" + (date.getSeconds() + 100)).substr(1) }; return format.replace(/(yyyy|MM?|dd?|HH?|ss?|mm?)/g, function() { return dict[arguments[0]]; }); } alert(formatDate("2010-04-30", "yyyy-MM-dd HH:mm:ss")); alert(formatDate("2010-4-29 1:50:00", "yyyy-MM-dd HH:mm:ss")); </script>
var datestr="/Date(1408291200000+0800)/"; //模擬咱們返回的json日期格式 var newdate=eval(datastr.replace(/\//g, '')); // 經過這個方法日期被格式化成了"Wed Aug 20 2014 18:54:10 GMT+0800 (中國標準時間)"標準時間格式
而後在調用上面的方法:json
alert(formatDate(newdate, "yyyy-MM-dd HH:mm:ss"));
alert(formatDate(newdate, "yyyy-MM-dd"));
返回結果: 2014-08-20 19:00:13spa
2014-08-20 .net