|
|
[サンプルコード]
現在月の初日、末日を求める
var month_first_date;
var month_last_date;
/* 月の初日の取得 */
month_first_date = new Date().setDate(1);
/* 月の末日の取得 */
month_last_date = new Date(month_first_date);
month_last_date.setFullYear(month_last_date.getFullYear()
+ int((month_last_date.getMonth() + 1) / 12)); /* 年の設定 */
month_last_date.setMonth((month_last_date.getMonth() + 1) % 12); /* 月の設定 */
month_last_date.value -= 1; /* 1日引く */
print("月の初日:"+str(month_first_date,"YYYY/MM/DD"),"\n");
print("月の末日:"+str(month_last_date,"YYYY/MM/DD"),"\n");
|
|