我正在尝试使用 JS 将 a转换为格式date object的字符串。YYYYMMDD有比连接Date.getYear(),Date.getMonth()和更简单的方法Date.getDay()吗?
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();