JavaScript Date getMonth 方法
getMonth 方法用于取得 Date 对象中表示月份的数字。语法如下:
date_obj.getMonth()
提示
- 该方法总是结合一个 Date 对象来使用。
- 得到 0-11 的数字表示 1-12 月份。
getMonth 方法实例
例子 1
该例子从当前的时间中取得月份数字:
<script language="JavaScript"> var d = new Date(); document.write( d.getMonth() ); </script>
运行该例子,输出:
3
注意:实际的月份是 4 月。
例子 2
该例子正确的输出自定义的月份:
<script language="JavaScript"> var d = new Date(); month_array = new Array('一','二','三','四','五','六','七','八','九','十','十一','十二'); document.write( month_array[d.getMonth()] + '月' ); </script>
运行该例子,输出:
四月