このコードのようなことをしたかったのですが、日付ではそれができません。undefined
月が11を超えると、アラートに「」と表示されます(12、13など)。
月から別の月に移動したいので、現在の月が12月であっても、getMonth()+1
またはのようなことをする必要があります(そうすると、私に与えられます)。これを達成する方法を知っていますか?+2
December+1 (11+1)
January (0)
var m = mdate.getMonth();
alert(nextMonth(m+3));
function nextMonth(month){
if (month>11) {
if(month==12) month=0;
if(month==13) month=1;
} else {
return month;
}
}
ありがとう