aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/global_objects/date/index.html
blob: 9cacee3238965f5c05915d5187bd0cf617247599 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
---
title: Date
slug: Web/JavaScript/Reference/Global_Objects/Date
tags:
  - Date
  - JavaScript
  - 日期
  - 时间
translation_of: Web/JavaScript/Reference/Global_Objects/Date
---
<p>{{JSRef}}</p>

<p>创建一个 JavaScript <code>Date</code> 实例,该实例呈现时间中的某个时刻。<code>Date</code> 对象则基于 <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html#tag_04_16">Unix Time Stamp</a>,即自1970年1月1日(UTC)起经过的毫秒数。</p>

<div>{{EmbedInteractiveExample("pages/js/date-constructor.html")}}</div>



<h2 id="语法">语法</h2>

<pre class="syntaxbox notranslate">new Date();
new Date(<var>value</var>);
new Date(<var>dateString</var>);
new Date(<var>year</var>, <var>monthIndex</var> [, <var>day</var> [, <var>hours</var> [, <var>minutes</var> [, <var>seconds</var> [, <var>milliseconds</var>]]]]]);</pre>

<div class="note">
<p>创建一个新<code>Date</code>对象的唯一方法是通过{{jsxref("Operators/new", "new")}} 操作符,例如:<code>let now = new Date();</code><br>
 若将它作为常规函数调用(即不加 {{jsxref("Operators/new", "new")}} 操作符),将返回一个字符串,而非 <code>Date</code> 对象。 </p>
</div>

<h3 id="参数">参数</h3>

<p><code>Date()</code>构造函数有四种基本形式</p>

<h4 id="没有参数">没有参数</h4>

<p>如果没有提供参数,那么新创建的Date对象表示实例化时刻的日期和时间。</p>

<h4 id="Unix时间戳">Unix时间戳</h4>

<dl>
 <dt><code>value</code></dt>
 <dd>一个 Unix 时间戳(<a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html#tag_04_16">Unix Time Stamp</a>),它是一个整数值,表示自1970年1月1日00:00:00 UTC(the Unix epoch)以来的毫秒数,忽略了闰秒。请注意大多数 Unix 时间戳功能仅精确到最接近的秒。</dd>
 <dt>
 <h4 id="时间戳字符串">时间戳字符串</h4>
 </dt>
 <dt><code>dateString</code></dt>
 <dd>表示日期的字符串值。该字符串应该能被 {{jsxref("Date.parse()")}} 正确方法识别(即符合 <a href="http://tools.ietf.org/html/rfc2822#page-14" style="white-space: pre-line;">IETF-compliant RFC 2822 timestamps</a> 或 <a href="http://www.ecma-international.org/ecma-262/5.1/#sec-15.9.1.15">version of ISO8601</a>)。
 <div class="note">
 <p><strong>注意:</strong> 由于浏览器之间的差异与不一致性,强烈不推荐使用<code>Date</code>构造函数来解析日期字符串 (或使用与其等价的<code>Date.parse</code>)。对 RFC 2822 格式的日期仅有约定俗称的支持。 对 ISO 8601 格式的支持中,仅有日期的串 (例如 "1970-01-01") 会被处理为 UTC 而不是本地时间,与其他格式的串的处理不同。</p>
 </div>
 </dd>
</dl>

<h4 id="分别提供日期与时间的每一个成员">分别提供日期与时间的每一个成员</h4>

<p>当至少提供了年份与月份时,这一形式的 <code>Date() </code>返回的 <code>Date </code>对象中的每一个成员都来自下列参数。没有提供的成员将使用最小可能值(对日期为<code>1</code>,其他为<code>0</code>)。</p>

<dl>
 <dt><code>year</code></dt>
 <dd>表示年份的整数值。 0到99会被映射至1900年至1999年,其它值代表实际年份。参见 {{anch("Two_digit_years_map_to_1900_-_1999", "示例")}}</dd>
 <dt><code>monthIndex</code></dt>
 <dd>表示月份的整数值,从 0(1月)到 11(12月)。</dd>
 <dt>date{{optional_inline}}</dt>
 <dd>表示一个月中的第几天的整数值,从1开始。默认值为1。</dd>
 <dt><code>hours</code> {{optional_inline}}</dt>
 <dd>表示一天中的小时数的整数值 (24小时制)。默认值为0(午夜)。</dd>
 <dt><code>minutes</code> {{optional_inline}}</dt>
 <dd>表示一个完整时间(如 01:10:00)中的分钟部分的整数值。默认值为0。</dd>
 <dt><code>seconds</code> {{optional_inline}}</dt>
 <dd>表示一个完整时间(如 01:10:00)中的秒部分的整数值。默认值为0。</dd>
 <dt><code>milliseconds</code> {{optional_inline}}</dt>
 <dd>表示一个完整时间的毫秒部分的整数值。默认值为0。</dd>
</dl>

<h2 id="使用注释">使用注释</h2>

<div class="note">
<p><strong>注意 参数</strong><code>monthIndex</code> 是从“0”开始计算的,这就意味着一月份为“0”,十二月份为“11”。</p>
</div>

<div class="note">
<p><strong>注意:</strong>当Date作为构造函数调用并传入多个参数时,如果数值大于合理范围时(如月份为 13 或者分钟数为 70),相邻的数值会被调整。比如 new Date(2013, 13, 1)等于new Date(2014, 1, 1),它们都表示日期2014-02-01(注意月份是从0开始的)。其他数值也是类似,new Date(2013, 2, 1, 0, 70)等于new Date(2013, 2, 1, 1, 10),都表示同一个时间:<code>2013-03-01T01:10:00</code></p>
</div>

<div class="note">
<p><strong>注意:</strong>当Date作为构造函数调用并传入多个参数时,所定义参数代表的是当地时间。如果需要使用世界协调时 UTC,使用 <code>new Date({{jsxref("Date.UTC()", "Date.UTC(...)")}})</code> 和相同参数。</p>
</div>

<h2 id="简介">简介</h2>

<ul>
 <li>如果没有输入任何参数,则Date的构造器会依据系统设置的当前时间来创建一个Date对象。</li>
 <li>如果提供了至少两个参数,其余的参数均会默认设置为 1(如果没有指定 day 参数)或者 0(如果没有指定 day 以外的参数)。</li>
 <li>JavaScript的时间由世界标准时间(UTC)1970年1月1日开始,用毫秒计时,一天由 86,400,000 毫秒组成。<code>Date</code> 对象的范围是 -100,000,000 天至 100,000,000 天(等效的毫秒值)。</li>
 <li><code>Date</code> 对象为跨平台提供了统一的行为。时间属性可以在不同的系统中表示相同的时刻,而如果使用了本地时间对象,则反映当地的时间。</li>
 <li><code>Date</code> 对象支持多个处理 UTC 时间的方法,也相应地提供了应对当地时间的方法。UTC,也就是我们所说的格林威治时间,指的是time中的世界时间标准。而当地时间则是指执行JavaScript的客户端电脑所设置的时间。</li>
 <li>以一个函数的形式来调用 <code>Date</code> 对象(即不使用 {{jsxref("Operators/new", "new")}} 操作符)会返回一个代表当前日期和时间的字符串。</li>
</ul>

<h2 id="属性">属性</h2>

<dl>
 <dt>{{jsxref("Date.prototype")}}</dt>
 <dd>允许为 <code>Date</code> 对象添加属性。</dd>
 <dt><code>Date.length</code></dt>
 <dd><code>Date.length</code> 的值是 7。这是该构造函数可接受的参数个数。</dd>
</dl>

<h2 id="方法">方法</h2>

<dl>
 <dt>{{jsxref("Date.now()")}}</dt>
 <dd>返回自 1970-1-1 00:00:00  UTC(世界标准时间)至今所经过的毫秒数。</dd>
 <dt>{{jsxref("Date.parse()")}}</dt>
 <dd>解析一个表示日期的字符串,并返回从 1970-1-1 00:00:00 所经过的毫秒数。
 <div class="note">
 <p><strong>注意:</strong> 由于浏览器差异和不一致,强烈建议不要使用<code>Date.parse</code>解析字符串。</p>
 </div>
 </dd>
 <dt>{{jsxref("Date.UTC()")}}</dt>
 <dd>接受和构造函数最长形式的参数相同的参数(从2到7),并返回从 1970-01-01 00:00:00 UTC 开始所经过的毫秒数。</dd>
</dl>

<h2 id="JavaScript_Date_实例">JavaScript <code>Date</code> 实例</h2>

<p>所有的 <code>Date</code> 实例都继承自 {{jsxref("Date.prototype")}}。修改 <code>Date </code>构造函数的原型对象会影响到所有的 <code>Date</code> 实例。</p>

<h3 id="实例属性">实例属性</h3>

<dl>
 <dt><code>Date.prototype.constructor</code></dt>
 <dd>返回创建了实例的构造函数,默认是 {{jsxref("Date")}} 构造函数。</dd>
</dl>

<h3 id="实例方法">实例方法</h3>

<p>{{ page("/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Date/prototype", "Methods") }}</p>

<h2 id="例子">例子</h2>

<h3 id=">例子:创建一个日期对象的几种方法">&gt;例子:创建一个日期对象的几种方法</h3>

<p>下例展示了用来创建一个日期对象的多种方法。</p>

<div class="note">
<p><strong>注意:</strong> 由于浏览器差异和不一致性,强烈建议不要使用<code>Date</code>构造函数(和<code>Date.parse</code>,它们是等效的)解析日期字符串。</p>
</div>

<pre class="brush: js notranslate">var today = new Date();
var birthday = new Date('December 17, 1995 03:24:00');
var birthday = new Date('1995-12-17T03:24:00');
var birthday = new Date(1995, 11, 17);
var birthday = new Date(1995, 11, 17, 3, 24, 0);
</pre>

<h3 id="例子:将两位数年份映射为_1900_-_1999_年">例子:将两位数年份映射为 1900 - 1999 年</h3>

<p>为了创建和获取 0 到 99 之间的年份,应使用 {{jsxref("Date.prototype.setFullYear()")}}{{jsxref("Date.prototype.getFullYear()")}} 方法。</p>

<pre class="brush: js notranslate">var date = new Date(98, 1); // Sun Feb 01 1998 00:00:00 GMT+0000 (GMT)

// 已弃用的方法, 同样将 98 映射为 1998
date.setYear(98);           // Sun Feb 01 1998 00:00:00 GMT+0000 (GMT)

date.setFullYear(98);       // Sat Feb 01 0098 00:00:00 GMT+0000 (BST)
</pre>

<h3 id="例子:计算经过的时间">例子:计算经过的时间</h3>

<p>下例展示了如何以毫秒精度计算两个日期对象的时间差:</p>

<p>由于不同日期、月份、年份长度的不同(日期长度不同来自夏令时的切换),使用大于秒、分钟、小时的单位表示经过的时间会遇到很多问题,在使用前需要经过详尽的调研。</p>

<pre class="brush: js notranslate">// 使用 Date 对象
var start = Date.now();

// 调用一个消耗一定时间的方法:
doSomethingForALongTime();
var end = Date.now();
var elapsed = end - start; // 以毫秒计的运行时长</pre>

<pre class="brush: js notranslate">// 使用内建的创建方法
var start = new Date();

// 调用一个消耗一定时间的方法:
doSomethingForALongTime();
var end = new Date();
var elapsed = end.getTime() - start.getTime(); // 运行时间的毫秒值</pre>

<pre class="brush: js notranslate" dir="ltr">// to test a function and get back its return
function printElapsedTime (fTest) {
    var nStartTime = Date.now(),
        vReturn = fTest(),
        nEndTime = Date.now();
    alert("Elapsed time: " + String(nEndTime - nStartTime) + " milliseconds");
    return vReturn;
}
yourFunctionReturn = printElapsedTime(yourFunction);
</pre>

<div class="note">
<p>注意:在支持 {{domxref("window.performance", "Web Performance API")}} 的高精细度(high-resolution)时间功能的浏览器中,{{domxref("Performance.now()")}} 提供的所经过的时间比 {{jsxref("Date.now()")}} 更加可靠、精确。</p>
</div>

<h3 id="获取自_Unix_起始时间以来经过的秒数">获取自 Unix 起始时间以来经过的秒数</h3>

<pre class="brush: js notranslate">var seconds = Math.floor(Date.now() / 1000);</pre>

<p>注意此处需要返回一个整数 (仅做除法得到的不是整数),并且需要返回实际已经经过的秒数(所以这里使用了{{jsxref("Math.floor()")}}而不是{{jsxref("Math.round()")}}).</p>

<h2 id="规范">规范</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">规范版本</th>
   <th scope="col">规范状态</th>
   <th scope="col">注解</th>
  </tr>
  <tr>
   <td>{{SpecName('ESDraft', '#sec-date-objects', 'Date')}}</td>
   <td>{{Spec2('ESDraft')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('ES6', '#sec-date-objects', 'Date')}}</td>
   <td>{{Spec2('ES6')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('ES5.1', '#sec-15.9', 'Date')}}</td>
   <td>{{Spec2('ES5.1')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('ES1')}}</td>
   <td>{{Spec2('ES1')}}</td>
   <td>Initial definition. Implemented in JavaScript 1.1.</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>

<p>{{Compat("javascript.builtins.Date")}}</p>