js获取当前时间并转换横杠 YYYY-MM-dd HH:MM:SS 格式

发布时间:2024年01月16日

方法封装

  getCurrentTime() {
    var date = new Date();//当前时间
    var year = date.getFullYear() //年
    var month = this.repair(date.getMonth() + 1);//月
    var day = this.repair(date.getDate());//日
    var hour = this.repair(date.getHours());//时
    var minute = this.repair(date.getMinutes());//分
    var second = this.repair(date.getSeconds());//秒

    //当前时间 
    var curTime = year + "-" + month + "-" + day
      + " " + hour + ":" + minute + ":" + second;
    return curTime;
  },

  //若是小于10就加个0

  repair(i) {
    if (i >= 0 && i <= 9) {
      return "0" + i;
    } else {
      return i;
    }
  },

使用this.getCurrentTime()

文章来源:https://blog.csdn.net/Xiang_Gong_Ya_/article/details/135630695
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。