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

js 时间格式化

时间:2018-03-19 16:42:33      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:family   AC   span   return   UNC   时间   ros   class   day   

function formatDate(date, formatStr) {
  if (!date) {
return ‘‘
}
date = new Date(date)
function $addZero(v, size) {
for (var i = 0, len = size - (v + "").length; i < len; i++) {
v = "0" + v;
}
;
return v + "";
}

//格式化时间
var arrWeek = [‘日‘, ‘一‘, ‘二‘, ‘三‘, ‘四‘, ‘五‘, ‘六‘],
str = formatStr
.replace(/yyyy|YYYY/, date.getFullYear())
.replace(/yy|YY/, $addZero(date.getFullYear() % 100, 2))
.replace(/mm|MM/, $addZero(date.getMonth() + 1, 2))
.replace(/m|M/g, date.getMonth() + 1)
.replace(/dd|DD/, $addZero(date.getDate(), 2))
.replace(/d|D/g, date.getDate())
.replace(/hh|HH/, $addZero(date.getHours(), 2))
.replace(/h|H/g, date.getHours())
.replace(/ii|II/, $addZero(date.getMinutes(), 2))
.replace(/i|I/g, date.getMinutes())
.replace(/ss|SS/, $addZero(date.getSeconds(), 2))
.replace(/s|S/g, date.getSeconds())
.replace(/w/g, date.getDay())
.replace(/W/g, arrWeek[date.getDay()]);
return str;
},
formatDate(time, ‘YYYY-MM-DD hh:ii‘)


js 时间格式化

标签:family   AC   span   return   UNC   时间   ros   class   day   

原文地址:https://www.cnblogs.com/tangmeili/p/8602361.html

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