JavaScript Date getUTCMonth()方法 (JavaScript Date getUTCMonth() method)
getUTCMonth() method is a Date's class method and it is used to get the current month’s value according to the UTC (Universal time coordinated) between the range of 0 to 11, where 0 for January, 1 for February, ..., 11 for December.
getUTCMonth()方法是Date的类方法,用于根据0到11之间的UTC(协调世界时)获取当前月份的值,其中0表示一月,1表示二月,...,11十二月
Syntax:
句法:
var dt = new Date();
dt.getUTCMonth();
Examples:
例子:
Input:
var dt = new Date();
dt.getUTCMonth();
Output:
2 //if the month is March
JavaScript code to get the current UTC month's value using getUTCMonth() method
JavaScript代码使用getUTCMonth()方法获取当前UTC月的值
<html>
<head><title>JavaScipt Example</title></head>
<body>
<script>
var dt = new Date(); //Date constructor
var month1 = dt.getUTCMonth(); //UTC Month
var month2 = dt.getMonth(); //local Month
//printing Milliseconds
document.write("UTC Month = " + month1 + "<br>");
document.write("Local Month = " + month2 + "<br>");
</script>
</body>
</html>
Output
输出量
UTC Month = 2
Local Month = 2
Reference: JavaScript getUTCMonth() Method
参考: JavaScript getUTCMonth()方法
翻译自: https://www.includehelp.com/code-snippets/date-getUTCMonth-method-with-example-in-javascript.aspx