欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

中国标准时间转日期YYYY-MM-DD

程序员文章站 2022-03-30 09:00:58
...
function switchDate(standardTime) {
  if (standardTime != "") {
    let a = standardTime;
    var Month = a.getMonth() + 1;
    var MonthDate;
    var DayDate = a.getDate();
    var Day;
    if (Month < 10) {
      MonthDate = '0' + Month;
    } else {
      MonthDate = Month;
    }
    if (DayDate < 10) {
      Day = '0' + DayDate;
    } else {
      Day = DayDate;
    }
    var datetime = a.getFullYear() + "-" + MonthDate + "-" + Day;
    console.log(datetime)
    return datetime
  }
}

中国标准时间standardTime =  Sat Jan 01 1994 00:00:00 GMT+0800 (中国标准时间) 转之后是datetime = 1994-01-01

相关标签: js js