当调用getMonth()和getDate()on date对象时,我们将获得single digit number。例如 :
getMonth()
getDate()
date
single digit number
对于january,它显示1,但我需要将其显示为01。怎么做?
january
1
01
("0" + this.getDate()).slice(-2)
日期,类似:
("0" + (this.getMonth() + 1)).slice(-2)
这个月。