date.getUTCMonth
date.getUTCMonth
在getUTCMonth()
按照通用时间指定日期的月回报,作为一个从零开始的值(其中0表示第一月的一年)。
语法
dateObj.getUTCMonth()
返回值
一个整数,介于0到11之间,对应于按照世界时间给定日期的月份。1月份为0,2月份为1,3月份为2,依此类推。
例子
Using getUTCMonth()
以下示例将当前日期的月份部分分配给变量month
。
var today = new Date(
var month = today.getUTCMonth(
规格
Specification | Status | Comment |
---|---|---|
ECMAScript 1st Edition (ECMA-262) | Standard | Initial definition. Implemented in JavaScript 1.3. |
ECMAScript 5.1 (ECMA-262)The definition of 'Date.prototype.getUTCMonth' in that specification. | Standard | |
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Date.prototype.getUTCMonth' in that specification. | Standard | |
ECMAScript Latest Draft (ECMA-262)The definition of 'Date.prototype.getUTCMonth' in that specification. | Draft | |
浏览器兼容性
Feature | Chrome | Firefox | Edge | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |