aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/document/all/index.html
blob: e130540cea5bbf2625f0e3dae99720c5f364165b (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
---
title: Document.all
slug: Web/API/Document/all
tags:
  - API
  - DOM
  - Document
  - HTMLAllCollection
  - Property
  - Reference
  - all
translation_of: Web/API/Document/all
---
<div>{{APIRef("DOM")}}{{Draft}}{{SeeCompatTable}}</div>

<p>{{DOMxRef("Document")}} 인터페이스의 read-only <strong><code>all</code></strong> 요소는 document node에 위치한{{DOMxRef("HTMLAllCollection")}} 반환한다. 간단하게 말하면 read-only <strong><code>all</code></strong> 요소는 페이지의 모든 contents를 반환 해준다.</p>

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

<pre class="syntaxbox">var <var>htmlAllCollection</var> = document.all;</pre>

<h3 id="Value">Value</h3>

<p>{{DOMxRef("HTMLAllCollection")}}는 문서 내에서 모든 node를 담고 있다.</p>

<h2 id="Specifications">Specifications</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('HTML WHATWG', '#dom-document-all', 'all')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Browser compatibility</h2>



<p>{{Compat("api.Document.all")}}</p>