小码哥的IT人生

JavaScript Date getUTCMonth() 方法

JavaScript基础 2022-06-08 09:51:37小码哥的IT人生shichen

JavaScript Date getUTCMonth() 方法

实例

根据世界时返回月份:

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

完整实例:

<!DOCTYPE html>
<html>
<body>
<p>单击该按钮可根据 UTC 显示月份。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var d = new Date();
  var n = d.getUTCMonth();
  document.getElementById("demo").innerHTML = n;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

页面下方有更多 TIY 实例。

定义和用法

getUTCMonth() 方法根据通用时间返回指定日期的月份(从 0 到 11)。

注释: 一月为 0,二月为 1,依此类推。

计算日期时,UTC 方法假设日期对象是本地时间和日期。

提示:世界协调时间 (UTC) 是世界时间标准设定的时间。

注释:UTC 时间与 GMT 时间(格林威治时间)相同。

浏览器支持

方法 Chrome IE Firefox Safari Opera
getUTCMonth() 支持 支持 支持 支持 支持

语法

Date.getUTCMonth()

参数

无参数。

技术细节

返回值: 数值,从 0 到 11,表示月份。
JavaScript 版本: ECMAScript 1

更多实例

根据世界时返回月份的名称(不仅是数字):

var d = new Date()
var month = new Array(12);
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.getUTCMonth()];

完整实例:

<!DOCTYPE html>
<html>
<body>
<p>单击该按钮以根据 UTC 显示月份名称。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var d = new Date();
  var month = new Array(12);
  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.getUTCMonth()];
  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

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024