前端js格式化日期方法
formatCSTDate:function(strDate,format){
return inviteRecList.formatDate(new Date(strDate.time),format);
},
formatDate:function(date,format){
var paddNum = function(num){
num += "";
return num.replace(/^(\d)$/,"0$1");
}
//指定格式字符
var cfg = {
yyyy : date.getFullYear() //年 : 4位
,yy : date.getFullYear().toString().substring(2)//年 : 2位
,M : date.getMonth() + 1 //月 : 如果1位的时候不补0
,MM : paddNum(date.getMonth() + 1) //月 : 如果1位的时候补0
,d : date.getDate()
,dd : paddNum(date.getDate())//日 : 如果1位的时候补0
,hh : paddNum(date.getHours())//时:如果1位的时候补0
,mm : paddNum(date.getMinutes())//分:如果1位的时候补0
,ss : paddNum(date.getSeconds())//秒:如果1位的时候补0
}
format || (format = "yyyy-MM-dd hh:mm:ss");
return format.replace(/([a-z])(\1)*/ig,function(m){return cfg[m];});
}
點擊查看更多內容
1人點贊
評論
評論
共同學習,寫下你的評論
評論加載中...
作者其他優(yōu)質文章
正在加載中
感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦