在线文档教程

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(

规格

SpecificationStatusComment
ECMAScript 1st Edition (ECMA-262)StandardInitial 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

浏览器兼容性

FeatureChromeFirefoxEdgeInternet ExplorerOperaSafari
Basic Support(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)

FeatureAndroidChrome for AndroidEdge mobileFirefox for AndroidIE mobileOpera AndroidiOS Safari
Basic Support(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)