JavaScript Date getMonth() 方法
JavaScript基础 2022-06-08 09:50:56小码哥的IT人生shichen
JavaScript Date getMonth() 方法
实例
返回月份:
var d = new Date();
var n = d.getMonth();
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>单击该按钮可显示表示本月的数字。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
var d = new Date();
var n = d.getMonth();
document.getElementById("demo").innerHTML = n;
}
</script>
<p><strong>Note:</strong> 0=January, 1=February etc.</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
页面下方有更多 实例。
定义和用法
getMonth()
方法根据本地时间返回指定日期的月份(从 0 到 11)。
注释:一月为 0,二月为 1,依此类推。
浏览器支持
方法 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
getMonth() | 支持 | 支持 | 支持 | 支持 | 支持 |
语法
Date.getMonth()
参数
无参数。
技术细节
返回值: | 数值,从 0 到 11,表示月份。 |
---|---|
JavaScript 版本: | ECMAScript 1 |
更多实例
返回月份的名称(不仅是数字):
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()];
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>单击按钮可显示本月的名称。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
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 d = new Date();
var n = month[d.getMonth()];
document.getElementById("demo").innerHTML = n;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html