当天时间格式的转换封装2020-01-07

转化之后的格式为:2019-12-09

function getData(){
    var myDate = new Date()
      let Y = myDate.getFullYear() //年
      if(myDate.getMonth() + 1<10){ //月
        var M = myDate.getMonth() + 1
        M = "0"+M
      }else{
        var M = myDate.getMonth() + 1
      }
      if(myDate.getDate()<10){ //日
        var D = myDate.getDate()
        D = "0"+ D
      }else{
        var D = myDate.getDate()
      }
      myDate =`${Y}-${M}-${D}`//2019-09-23
}

  • 使用时:直接引入当方法调用

你可能感兴趣的:(js)