aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/console/time/index.html
blob: 0bb67dc2c9a12d4cdbfb46d31851a80242c73a1d (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
---
title: console.time
slug: Web/API/Console/time
translation_of: Web/API/Console/time
---
<p>{{ ApiRef() }}</p>

<p>你可以启动一个计时器来跟踪某一个操作的占用时长。每一个计时器必须拥有唯一的名字,页面中最多能同时运行10,000个计时器。当以此计时器名字为参数调用 {{ domxref("console.timeEnd()") }} 时,浏览器将以毫秒为单位,输出对应计时器所经过的时间。</p>

<p>关于 <a href="/en/DOM/console#Timers" title="en/DOM/console#Timers">Timers</a> 的细节和例子请参考文档 {{ domxref("console") }}</p>

<p>{{AvailableInWorkers}}</p>

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

<pre class="eval">console.time(<em>timerName</em>);
</pre>

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

<dl>
 <dt><code>timerName</code></dt>
 <dd>新计时器的名字。 用来标记这个计时器,作为参数调用 {{ domxref("console.timeEnd()") }}可以停止计时并将经过的时间在终端中打印出来.</dd>
</dl>

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

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName("Console API", "#time", "console.time()")}}</td>
   <td>{{Spec2("Console API")}}</td>
   <td>Initial definition</td>
  </tr>
 </tbody>
</table>

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

<p>{{Compat("api.Console.time")}}</p>

<h2 id="参阅">参阅</h2>

<ul>
 <li>{{domxref("Console.timeEnd()")}}</li>
 <li>{{domxref("Console.timeLog()")}}</li>
 <li><a href="http://www.opera.com/dragonfly/documentation/console/">Opera Dragonfly documentation: Console</a></li>
</ul>