/*
year
month
*/
function getMonth(year, month) {
return year * 12 + month
}
/*
month
*/
function getYearMonth(month) {
var year=Math.floor(month/12);
var month=month%12;
if(month===0){
year--;
month=12
}
return {
year:year,
month:month
}
}
/*
推出上个月是几年几月
*例如 当前2020.06
getTimeByIndex(0) year:2020 month:6
getTimeByIndex(1) year:2020 month:5
getTimeByIndex(6) year:2019 month:12
*/
function getTimeByIndex(index) {
var NOW = new Date()
var YEAR = NOW.getFullYear()
var MONTH = NOW.getMonth()+1
var currentMonth = getMonth(YEAR, MONTH);
currentMonth -= index
return {
year: getYearMonth(currentMonth).year,
month: getYearMonth(currentMonth).month
}
}
能不能优化一下
其实已有轮子,可以不用重复,moment里面有很多对时间处理的。