js时间格式化
2021-03-07 03:29
标签:mil gets 时间格式 minutes seconds bsp cti span replace 调用:this.dateFtt(‘yyyy-MM-dd‘,new Date()) js时间格式化 标签:mil gets 时间格式 minutes seconds bsp cti span replace 原文地址:https://www.cnblogs.com/97pkp/p/12890543.html
/**
* 时间格式化
*/
dateFtt: function(fmt,date) {
var o = {
‘M+‘: date.getMonth() + 1, //月份
‘d+‘: date.getDate(), //日
‘h+‘: date.getHours(), //小时
‘m+‘: date.getMinutes(), //分
‘s+‘: date.getSeconds(), //秒
‘q+‘: Math.floor((date.getMonth() + 3) / 3), //季度
‘S‘: date.getMilliseconds() //毫秒
};
if (/(y+)/.test(fmt))
{fmt = fmt.replace(RegExp.$1, (date.getFullYear() + ‘‘).substr(4 - RegExp.$1.length));}
for (var k in o)
{if (new RegExp(‘(‘ + k + ‘)‘).test(fmt))
{fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : ((‘00‘ + o[k]).substr((‘‘ + o[k]).length)));}}
return fmt;
}
上一篇:Vue基础之v-cloak、v-text、v-html、v-bind、v-on的基本使用
下一篇:phpmailer 发送Outlook邮件时535 5.7.3 authentication unsuccessful错误的解决办法