码迷,mamicode.com
首页 > Web开发 > 详细

被json格式化的时间串处理

时间:2014-09-10 14:00:30      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   div   cti   sp   log   

  function renderTime(date) {
            var da = new Date(parseInt(date.replace("/Date(", "").replace(")/", "").split("+")[0]));
            Year = da.getFullYear(); //ie火狐下都可以
            Month = da.getMonth() + 1;
            Day = da.getDate();

            var CurrentDate = "";
            CurrentDate += Year + "-";
            if (Month >= 10) {
                CurrentDate += Month + "-";
            }
            else {
                CurrentDate += "0" + Month + "-";
            }
            if (Day >= 10) {
                CurrentDate += Day;
            }
            else {
                CurrentDate += "0" + Day;
            }
            return CurrentDate + " " + da.getHours() + ":" + da.getSeconds() + ":" + da.getMinutes();
        }

 

被json格式化的时间串处理

标签:style   blog   color   io   ar   div   cti   sp   log   

原文地址:http://www.cnblogs.com/qh1688/p/3964151.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!