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

js时间格式化

时间:2016-06-21 15:26:26      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

 1 /*
 2  * 日期格式化
 3  * =========*/
 4 function dateformat(date, format){
 5     var paddNum = function(num){
 6         num += "";
 7         return num.replace(/^(\d)$/, "0$1");
 8     }
 9     if(date == null){
10         return date;
11     }
12     if(typeof date == ‘string‘){
13         date = new Date(date.replace(/-/g, ‘/‘));
14     }else if(typeof date == ‘number‘){
15         date = new Date(date);
16     }
17     
18     //时间格式字符
19     var cfg = {
20         yyyy: date.getFullYear(),
21         yy: date.getFullYear().toString().substring(2),
22         MM: paddNum(date.getMonth() + 1),
23         M: date.getMonth() + 1,
24         dd: paddNum(date.getDate()),
25         d: date.getDate(),
26         HH: paddNum(date.getHours()),
27         mm: paddNum(date.getMinutes()),
28         ss: paddNum(date.getSeconds())
29     }
30     format || (format = ‘yyyy-MM-dd HH:mm:ss‘);
31     return format.replace(/([a-z])(\1)*/ig, function(m){
32         return cfg[m];
33     })
34 }

 

js时间格式化

标签:

原文地址:http://www.cnblogs.com/thierry/p/5603603.html

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