下面介绍一种在js中,关于时间格式的转换。
var datestr="/Date(1408291200000+0800)/"; //模拟我们返回的json日期格式var newdate=eval(datastr.replace(/\//g, '')); // 通过这个方法日期被格式化成了"Wed Aug 20 2014 18:54:10 GMT+0800 (中国标准时间)"标准时间格式
然后在调用上面的方法:
alert(formatDate(newdate, "yyyy-MM-dd HH:mm:ss")); alert(formatDate(newdate, "yyyy-MM-dd"));
返回结果:
2014-08-20 19:00:13
2014-08-20