我们常常会通过datetime得到时间,但是网页前台往往会显示不同的时间 如:2013-12-15 2013年12月23日 2013 12 15 等多种显示效果,这就需要我们把时间格式化一下. 下面是通过Jquery格式化时间: $(function () { var time = '2013/9/29 11:10:26'; var data = new Date(time); var year = data.getFullYear(); //获取年 …
//格式化 yyyy-MM-dd hh:mm:ss function renderTime(date) { if (date == '' || date == null) { return ''; } var da = new Date(parseInt(date.replace("/Date(", "").replace(")/", "").split("+")[0])); return da.getFu…