从 JS 日期对象获取 YYYYMMDD 格式的字符串?
2022-08-29 23:05:21
我正在尝试使用JS将a转换为格式的字符串。有没有比连接 、 和 更简单的方法?date object
YYYYMMDD
Date.getYear()
Date.getMonth()
Date.getDay()
我正在尝试使用JS将a转换为格式的字符串。有没有比连接 、 和 更简单的方法?date object
YYYYMMDD
Date.getYear()
Date.getMonth()
Date.getDay()
我经常使用的修改代码段:
Date.prototype.yyyymmdd = function() {
var mm = this.getMonth() + 1; // getMonth() is zero-based
var dd = this.getDate();
return [this.getFullYear(),
(mm>9 ? '' : '0') + mm,
(dd>9 ? '' : '0') + dd
].join('');
};
var date = new Date();
date.yyyymmdd();
我不喜欢添加到原型中。另一种选择是:
var rightNow = new Date();
var res = rightNow.toISOString().slice(0,10).replace(/-/g,"");
<!-- Next line is for code snippet output only -->
document.body.innerHTML += res;