最新的Web開發教程
 

JavaScript getMonth() Method

<javascript日期對象

返回月份:

var d = new Date();
var n = d.getMonth();

n的結果將是:

試一試»

更多"Try it Yourself"下面的例子。


定義和用法

getMonth()方法返回該月(from 0 to 11)指定日期,按照本地時間。

Note:一月份為0,二月是1,依此類推。


瀏覽器支持

方法
getMonth()

句法

參數
沒有

技術細節

返回值: 一個數字,從0到11,代表一個月
JavaScript的版本: 1.0

例子

更多示例

返回月份的名稱(not just a number)

var d = new Date();
var month = new Array();
month[0] = "January";
month[1] = "February";
month[2] = "March";
month[3] = "April";
month[4] = "May";
month[5] = "June";
month[6] = "July";
month[7] = "August";
month[8] = "September";
month[9] = "October";
month[10] = "November";
month[11] = "December";
var n = month[d.getMonth()];

代碼的輸出將是:

試一試»

<javascript日期對象