dateObject.getMonth()メソッドは、Dateオブジェクトの日時の何月かを示す数値を返すメソッド。
構文
dateObject.getMonth()
戻り値
Dateオブジェクトの日時の何月かを示す「0~11」の数値。
数値と月の対応は、下記のようになっている。
- 0: 1月
- 1: 2月
- 2: 3月
- 3: 4月
- 4: 5月
- 5: 6月
- 6: 7月
- 7: 8月
- 8: 9月
- 9: 10月
- 10: 11月
- 11: 12月
サンプル
<script type="text/javascript">
var $arrMonth = new Array( '1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月' );
var $dateObject = new Date();
document.write( '今月は、' + $arrMonth[$dateObject.getMonth()] + '。<br />' );
var $dateObject = new Date( "2013-04-23T13:25:30" );
document.write( 'new Date( "2013-04-23T13:25:30" )の何月かを示す数値は「' + $dateObject.getMonth() + '」で、「' );
document.write( $dateObject.getMonth() + '」は' + $arrMonth[$dateObject.getMonth()] + '。<br />' );
</script>
var $arrMonth = new Array( '1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月' );
var $dateObject = new Date();
document.write( '今月は、' + $arrMonth[$dateObject.getMonth()] + '。<br />' );
var $dateObject = new Date( "2013-04-23T13:25:30" );
document.write( 'new Date( "2013-04-23T13:25:30" )の何月かを示す数値は「' + $dateObject.getMonth() + '」で、「' );
document.write( $dateObject.getMonth() + '」は' + $arrMonth[$dateObject.getMonth()] + '。<br />' );
</script>
↓↓↓出力結果↓↓↓