js中设置时间格式
//time:vue elementui中时间控件的时间,'yyyy-MM-dd’格式formatDate(time, ‘yyyy-MM-dd’);function formatDate(time, format) {let t = new Date(time)let tf = function (i) {return (i < 10 ? '0' :...
·
//time:vue elementui中时间控件的时间,'yyyy-MM-dd’格式
formatDate(time, ‘yyyy-MM-dd’);
function formatDate(time, format) {
let t = new Date(time)
let tf = function (i) {
return (i < 10 ? '0' : '') + i
}
return format.replace(/yyyy|MM|dd|HH|mm|ss/g, function (a) {
switch (a) {
case 'yyyy':
return tf(t.getFullYear())
case 'MM':
return tf(t.getMonth() + 1)
case 'mm':
return tf(t.getMinutes())
case 'dd':
return tf(t.getDate())
case 'HH':
return tf(t.getHours())
case 'ss':
return tf(t.getSeconds())
}
})
}
更多推荐
已为社区贡献7条内容
所有评论(0)