原生js转换时间格式

一、方法

可按照传入的时间格式生成对应的格式。

function format(date, fmt) {
var myDate = new Date(date);
var o = {
  "M+": myDate.getMonth() + 1, //月份 
  "d+": myDate.getDate(), //日 
  "h+": myDate.getHours(), //小时 
  "m+": myDate.getMinutes(), //分 
  "s+": myDate.getSeconds(), //秒 
  "q+": Math.floor((myDate.getMonth() + 3) / 3), //季度 
  "S": myDate.getMilliseconds() //毫秒 
};
if (/(y+)/.test(fmt)) {
  fmt = fmt.replace(RegExp.$1, (myDate.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;
}

二、使用

console.log(format(new Date(), 'hh:mm:ss')); // 09:11:31
console.log(format(new Date(), 'yyyy-MM-dd')); // 2020-07-31
console.log(format(new Date(), 'yyyy-MM-dd hh:mm:ss'));  // 2020-07-31 09:12:21

参考:https://blog.csdn.net/document_dom/article/details/89481857

你可能感兴趣的:(原生js转换时间格式)