## 阳历月的推移 获取加(减)几月后(前)的阳历月对象。 1. .next(months) > 返回阳历月对象。
months(数字)
:推移的月数,正数为往后推,负数为往前推。 ### 示例代码 var d = SolarMonth.fromDate(new Date()); //往后推2月 console.log(d.next(2).toFullString()); ### 输出