对于月份,日期,在小于10时,需要补零操作, let date = new Date(); let newMonth = (date.getMonth()+1).toString().padStart(2, '0');
仅做记录用,实现补零的关键是"padStart(2, '0')".