blob: 9cbddc4177a19d1023104e91d7df471843cf4629 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
---
title: Date.prototype.setDate()
slug: Web/JavaScript/Reference/Global_Objects/Date/setDate
translation_of: Web/JavaScript/Reference/Global_Objects/Date/setDate
---
<div>{{JSRef("Global_Objects", "Date")}}</div>
<p><code><strong>setDate()</strong></code> 方法根据本地时间来指定一个日期对象的天数。</p>
<div>{{EmbedInteractiveExample("pages/js/date-setdate.html")}}</div>
<h2 id="Syntax">语法</h2>
<pre class="syntaxbox"><code><var>dateObj</var>.setDate(<em>dayValue</em>)</code></pre>
<h3 id="Parameters">参数</h3>
<dl>
<dt><code>dayValue</code></dt>
<dd>一个整数,表示该月的第几天。</dd>
</dl>
<h2 id="Description">描述</h2>
<p>如果 <code>dayValue</code> 超出了月份的合理范围,<code>setDate</code> 将会相应地更新 <code>Date</code> 对象。</p>
<p>例如,如果为 <code>dayValue</code> 指定0,那么日期就会被设置为上个月的最后一天。</p>
<p>如果dayValue被设置为负数,日期会设置为上个月最后一天往前数这个负数绝对值天数后的日期。-1会设置为上月最后一天的前一天(译者注:例如当前为4月,如果setDate(-2),则为3月29日)</p>
<h2 id="Examples">例子</h2>
<h3 id="Example_Using_setDate">例子:使用<code>setDate</code>方法</h3>
<pre class="brush:js">var theBigDay = new Date(1962, 6, 7); // 1962-07-07
theBigDay.setDate(24); // 1962-07-24
theBigDay.setDate(32); // 1962-08-01</pre>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">规范版本</th>
<th scope="col">规范状态</th>
<th scope="col">注解</th>
</tr>
<tr>
<td>ECMAScript 1st Edition. Implemented in JavaScript 1.0</td>
<td>Standard</td>
<td>Initial definition.</td>
</tr>
<tr>
<td>{{SpecName('ES5.1', '#sec-15.9.5.36', 'Date.prototype.setDate')}}</td>
<td>{{Spec2('ES5.1')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('ES6', '#sec-date.prototype.setdate', 'Date.prototype.setDate')}}</td>
<td>{{Spec2('ES6')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("javascript.builtins.Date.setDate")}}</p>
<h2 id="See_Also">相关链接</h2>
<ul>
<li>{{jsxref("Date.prototype.getDate()")}}</li>
<li>{{jsxref("Date.prototype.setUTCDate()")}}</li>
</ul>
|