blob: a70a1e210e8755a298772751c3a217f551cd084f (
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
|
---
title: Console.group()
slug: Web/API/console/group
tags:
- API
- DOM
- Debugging
- Method
- Web Development
- web console
translation_of: Web/API/Console/group
---
<div>{{APIRef("Console API")}}</div>
<p><a href="/ja/docs/Tools/Web_Console">ウェブコンソール</a>のログに、新たなインライングループを作成します。{{domxref("console.groupEnd()")}} を呼び出すまで、以降のすべての出力のレベルを 1 段階インデントします。</p>
<p>{{AvailableInWorkers}}</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox">console.group([label]);
</pre>
<h2 id="Parameters" name="Parameters">引数</h2>
<dl>
<dt><code>label</code></dt>
<dd>グループ用のラベル。任意。(Chrome 59 でテスト) <code>console.groupEnd()</code> は動作しません。</dd>
</dl>
<p>{{h3_gecko_minversion("コンソール内でのグループの使用", "9.0", "Using_groups_in_the_console")}}</p>
<p>ネストされたグループを使用して関連したメッセージを視覚的に結びつけることで、出力を整理する手助けができます。新しいネストのブロックを作成するには、<code>console.group()</code> を呼び出します。<code>console.groupCollapsed()</code> メソッドは類似していますが、新しいブロックが折りたたまれており、表示するには、展開ボタンをクリックする必要があります。</p>
<p><strong>注記:</strong> Gecko 9 から Gecko 51 までは、<code>groupCollapsed()</code> メソッドは、<code>group()</code> と同じでした。折りたたまれたグループは、Gecko 52 から完全にサポートされます。{{bug("1088360")}} をご覧ください。</p>
<p>現在のグループを終了するには、<code>console.groupEnd()</code> を呼び出してください。例えば、以下のようなコードです:</p>
<pre class="brush: js">console.log("This is the outer level");
console.group();
console.log("Level 2");
console.group();
console.log("Level 3");
console.warn("More of level 3");
console.groupEnd();
console.log("Back to level 2");
console.groupEnd();
console.log("Back to the outer level");
</pre>
<p>出力は以下のようになります:</p>
<p><img alt="A screenshot of messages nested in the console output." src="/@api/deki/files/6082/=nesting.png"></p>
<p>詳しくは、{{domxref("console")}} のドキュメントで <a href="/ja/docs/Web/API/console#Using_groups_in_the_console">コンソールでグループを使用する</a>セクションをご覧ください。</p>
<h2 id="Specifications" name="Specifications">仕様</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">策定状況</th>
<th scope="col">コメント</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("Console API", "#group", "console.group()")}}</td>
<td>{{Spec2("Console API")}}</td>
<td>最初期の定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
<p>{{Compat("api.Console.group")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li><a class="external" href="http://www.opera.com/dragonfly/documentation/console/">Opera Dragonfly documentation: Console</a></li>
</ul>
|