1 function dateFormat(optioner) {
2     var a = new Date,b;
3     return [a.getFullYear(), (b = (a.getMonth() + 1), b > 10 ? b : '0' + b), a.getDate()].join(optioner);
4 }
5 console.log(dateFormat('/'));

相关文章:

  • 2021-12-23
  • 2022-12-23
  • 2021-10-13
  • 2022-01-15
  • 2022-12-23
  • 2022-01-26
  • 2021-06-27
猜你喜欢
  • 2021-12-27
  • 2021-07-11
  • 2021-09-23
  • 2022-12-23
  • 2021-05-28
  • 2022-12-23
相关资源
相似解决方案