美文网首页
时间格式化

时间格式化

作者: PharkiLL | 来源:发表于2022-11-17 16:19 被阅读0次
    export function dateFormat(date) {
      let format = 'yyyy-MM-dd hh:mm:ss';
      if (date != 'Invalid Date') {
        var o = {
          "M+": date.getMonth() + 1, //month
          "d+": date.getDate(), //day
          "h+": date.getHours(), //hour
          "m+": date.getMinutes(), //minute
          "s+": date.getSeconds(), //second
          "q+": Math.floor((date.getMonth() + 3) / 3), //quarter
          "S": date.getMilliseconds() //millisecond
        }
        if (/(y+)/.test(format)) format = format.replace(RegExp.$1,
          (date.getFullYear() + "").substr(4 - RegExp.$1.length));
        for (var k in o)
          if (new RegExp("(" + k + ")").test(format))
            format = format.replace(RegExp.$1,
              RegExp.$1.length == 1 ? o[k] :
                ("00" + o[k]).substr(("" + o[k]).length));
        return format;
      }
      return '';
    
    }
    
    

    相关文章

      网友评论

          本文标题:时间格式化

          本文链接:https://www.haomeiwen.com/subject/jrupxdtx.html