aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/global_objects/date/utc
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/javascript/reference/global_objects/date/utc')
-rw-r--r--files/zh-cn/web/javascript/reference/global_objects/date/utc/index.html104
1 files changed, 104 insertions, 0 deletions
diff --git a/files/zh-cn/web/javascript/reference/global_objects/date/utc/index.html b/files/zh-cn/web/javascript/reference/global_objects/date/utc/index.html
new file mode 100644
index 0000000000..0be526200f
--- /dev/null
+++ b/files/zh-cn/web/javascript/reference/global_objects/date/utc/index.html
@@ -0,0 +1,104 @@
+---
+title: Date.UTC()
+slug: Web/JavaScript/Reference/Global_Objects/Date/UTC
+tags:
+ - Date
+ - JavaScript
+ - Method
+translation_of: Web/JavaScript/Reference/Global_Objects/Date/UTC
+---
+<div>{{JSRef("Global_Objects", "Date")}}</div>
+
+<p><code><strong>Date.UTC()</strong></code> 方法接受的参数同日期构造函数接受最多参数时一样,返回从1970-1-1 00:00:00 UTC到指定日期的的毫秒数。</p>
+
+<div>{{EmbedInteractiveExample("pages/js/date-utc.html")}}</div>
+
+
+
+<h2 id="Syntax" name="Syntax">语法</h2>
+
+<pre class="syntaxbox"><code>Date.UTC(<em>year</em>,<em>month</em>[,<em>date</em>[,<em>hrs</em>[,<em>min</em>[,<em>sec</em>{{mediawiki.external(',<em>ms</em>')}}]]]]) </code></pre>
+
+<h2 id="Parameters" name="Parameters">参数</h2>
+
+<dl>
+ <dt><code>year</code></dt>
+ <dd>1900 年后的某一年份。</dd>
+ <dt><code>month</code></dt>
+ <dd>0 到 11 之间的一个整数,表示月份。</dd>
+ <dt><code>date</code></dt>
+ <dd>1 到 31 之间的一个整数,表示某月当中的第几天。</dd>
+ <dt><code>hrs</code></dt>
+ <dd>0 到 23 之间的一个整数,表示小时。</dd>
+ <dt><code>min</code></dt>
+ <dd>0 到 59 之间的一个整数,表示分钟。</dd>
+ <dt><code>sec</code></dt>
+ <dd>0 到 59 之间的一个整数,表示秒。</dd>
+ <dt><code>ms</code></dt>
+ <dd>0 到 999 之间的一个整数,表示毫秒。</dd>
+</dl>
+
+<h2 id="Description" name="Description">描述</h2>
+
+<p><code>UTC</code> 方法接受以逗号隔开的日期参数,返回1970-1-1 00:00:00 UTC到指定的日期之间的毫秒数。</p>
+
+<p>你应该指定一个完整格式的年份,如 1998。如果年份被指定为 0 到 99 之间,则该方法会将年份转换为 20 世纪的一个年份(即 1900 + year),例如,指定为 95, 则年份为 1995。</p>
+
+<p><code>UTC</code> 方法与 <code>Date</code> 有两点不同:</p>
+
+<ul>
+ <li><code>Date.UTC</code> 方法使用协调世界时代替本地时间。</li>
+ <li><code>Date.UTC</code> 方法返回一个时间数值,而不是一个日期对象。</li>
+</ul>
+
+<p>如果有一个指定的参数超出其合理范围,则 UTC 方法会通过更新其他参数直到该参数在合理范围内。例如,为月份指定 15,则年份将会加 1,然后月份将会使用 3。</p>
+
+<p>由于 <code>UTC</code> 是 <code>Date</code>(日期对象)的一个静态方法,所以应该在 <code>Date </code>上直接调用,就像 <code>Date.UTC()</code>,而不要把它作为创建的日期对象的方法。</p>
+
+<h2 id="Examples" name="Examples">例子</h2>
+
+<h3 id="Example:_Using_Date.UTC" name="Example:_Using_Date.UTC">例子:使用 <code>Date.UTC</code></h3>
+
+<p>下面的语句使用 UTC 时间代替本地时间创建了一个日期对象。</p>
+
+<pre class="brush:js">var utcDate = new Date(Date.UTC(96, 11, 1, 0, 0, 0));
+</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.4.3', 'Date.UTC')}}</td>
+ <td>{{Spec2('ES5.1')}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName('ES6', '#sec-date.utc', 'Date.UTC')}}</td>
+ <td>{{Spec2('ES6')}}</td>
+ <td> </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.UTC")}}</p>
+
+<h2 id="See_also" name="See_also">相关链接</h2>
+
+<ul>
+ <li>{{jsxref("Date.parse()")}}</li>
+</ul>