blob: 8303d85879d8f6cc06f64b012317f8e35874f425 (
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
|
---
title: Console.debug()
slug: Web/API/Console/debug
tags:
- 控制台
- 调试
translation_of: Web/API/Console/debug
---
<div>{{APIRef("Console API")}}</div>
<p><span class="seoSummary"><code>{{domxref("Console")}}</code>.<strong><code>debug()</code></strong> 输出“调试”级别的消息且仅仅控制台配置为显示调试输出时才显示该消息。</span></p>
<p>{{AvailableInWorkers}}</p>
<h2 id="语法">语法</h2>
<pre class="syntaxbox">console.debug(<em>对象1</em> [, <em>对象2</em>, ..., <em>对象N</em>]);
console.debug(<em>消息</em>[, 字符串<em>1</em>, ..., 字符串<em>N</em>]);
</pre>
<h3 id="参数">参数</h3>
<dl>
<dt><code>对象1</code> ... <code>对象N</code></dt>
<dd>要输出的JavaScript 对象列表。 按传参的顺序把对象输出到控制台。</dd>
<dt><code>消息</code></dt>
<dd>一个JavaScript字符串,其中包含零个或多个替代字符串。</dd>
<dt><code>字符串1</code> ... <code>字符串N</code></dt>
<dd>JavaScript 对象,用来依次替换<code>msg</code>中的替代字符串。你可以在替代字符串中指定对象的输出格式。查看{{SectionOnPage("/zh-CN/docs/Web/API/Console", "使用字符串替换")}}了解替换字符串如何工作。</dd>
</dl>
<p>有关详细信息,请参阅{{domxref("console")}} 对象文档中的<a href="/zh-CN/docs/Web/API/console#Outputting_text_to_the_console">将文本输出到控制台</a>。</p>
<h2 id="规范">规范</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", "#debug", "console.debug()")}}</td>
<td>{{Spec2("Console API")}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<div>
<p>{{Compat("api.Console.debug")}}</p>
</div>
<h2 id="相关链接">相关链接</h2>
<ul>
<li><a href="http://www.opera.com/dragonfly/documentation/console/">Opera Dragonfly documentation: Console</a></li>
<li><a href="http://msdn.microsoft.com/library/gg589530">MSDN: Using the F12 Tools Console to View Errors and Status</a></li>
<li><a href="https://developers.google.com/chrome-developer-tools/docs/console#errors_and_warnings">Chrome Developer Tools: Using the Console</a></li>
</ul>
|