aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/console/profile/index.html
blob: 36687deb8a35eaae69e84ad1d85e21bc8dadf4fb (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
---
title: Console.profile()
slug: Web/API/Console/profile
tags:
  - API
  - DOM
  - Web开发
  - web控制台
  - 参考
  - 描述信息
  - 方法
  - 调试
  - 非标准
translation_of: Web/API/Console/profile
---
<p>{{APIRef("Console API")}}{{Non-standard_header}}</p>

<p>开始记录性能描述信息(例如,  <a href="/en-US/docs/Tools/Performance">Firefox performance tool</a>)。</p>

<p>你可以选择提供一个参数来命名描述信息,这将允许你在有多个描述信息被记录时来选择只停止那个描述信息(被你命名的那个)。请查阅{{domxref("Console.profileEnd()")}}来确认这个参数是如何被解释的。</p>

<p>要停止记录,请调用{{domxref("Console.profileEnd()")}}</p>

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

<h2 id="Syntax">Syntax</h2>

<pre class="syntaxbox">console.profile(<em>profileName</em>);
</pre>

<h2 id="Parameters">Parameters</h2>

<dl>
 <dt><code>profileName</code></dt>
 <dd>描述信息的名字。可选。</dd>
</dl>

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

{{Compat("api.console.profile")}}

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

<ul>
 <li>{{domxref("Console.profileEnd()")}}</li>
</ul>