Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Date.prototype.setUTCDate()

概要

setUTCDate() 方法就是根据全球时间设置特定date对象的日期。

语法

dateObj.setUTCDate(dayValue)

参数

dayValue
一个1-31的整形数字,用来指定日期。

描述

如果你指定的参数超出了范围,setUTCDate()会尝试更新对应的Date 中的日期信息。例如,如果你使用了40来作为参数,但是Date 中存储的月份为6月,那么日期将被改写为10且月份被增到7月。

示例

使用Using setUTCDate()

var theBigDay = new Date();
theBigDay.setUTCDate(20);

规范

Specification Status Comment
ECMAScript 1st Edition. Standard Initial definition. Implemented in JavaScript 1.3.
ECMAScript 5.1 (ECMA-262)
Date.prototype.setUTCDate
Standard  
ECMAScript 6 (ECMA-262)
Date.prototype.setUTCDate
Release Candidate  

浏览器兼容

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) (Yes) (Yes) (Yes) (Yes)
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) (Yes) (Yes) (Yes) (Yes) (Yes)

相关内容

文档标签和贡献者

 此页面的贡献者: rubyisapm
 最后编辑者: rubyisapm,