其他分享
首页 > 其他分享> > js中 new Date() 转换为 年-月-日 (单月/日自动补0)

js中 new Date() 转换为 年-月-日 (单月/日自动补0)

作者:互联网

function getNowFormatDate() {
  var date = new Date();
  var seperator1 = "-";
  var year = date.getFullYear();
  var month = date.getMonth() + 1;
  var strDate = date.getDate();
  if (month >= 1 && month <= 9) {
    month = "0" + month;
  }
  if (strDate >= 0 && strDate <= 9) {
    strDate = "0" + strDate;
  }
  var currentdate = year + seperator1 + month + seperator1 + strDate;
  return currentdate;
}

console.log(getNowFormatDate()) // 2022-01-13

标签:date,strDate,month,var,&&,Date,new,js
来源: https://www.cnblogs.com/cjxstart/p/15796117.html