aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/childnode/index.html
blob: 2d48b7ef8c5cb97b78d3d3dd0051cd8bbb7a2e55 (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
---
title: ChildNode
slug: Web/API/ChildNode
tags:
  - API
  - DOM
  - 노드
  - 실험중
  - 인터페이스
translation_of: Web/API/ChildNode
---
<div>{{APIRef("DOM")}}</div>

<p><code><strong>ChildNode</strong></code> 인터페이스는 부모를 가질 수 있는 {{domxref("Node")}} 객체에 고유한 메소드를 포함합니다.</p>

<p><code>ChildNode</code>는 원시 인터페이스이며 이 타입의 객체는 생성할 수 없습니다. 이는 {{domxref("Element")}}, {{domxref("DocumentType")}}{{domxref("CharacterData")}} 객체로 구현되었습니다.</p>

<h2 id="프로퍼티">프로퍼티</h2>

<p><em>상속 및 특정 프로퍼티가 없습니다.</em></p>

<h2 id="메소드">메소드</h2>

<p><em>상속된 메소드가 없습니다.</em></p>

<dl>
 <dt>{{domxref("ChildNode.remove()")}} {{experimental_inline}}</dt>
 <dd><code>ChildNode</code>를 부모의 자식 목록으로부터 제거합니다.</dd>
 <dt>{{domxref("ChildNode.before()")}} {{experimental_inline}}</dt>
 <dd>{{domxref("Node")}} 또는 {{domxref("DOMString")}} 객체의 집합을 부모의 자식 목록에서 <code>ChildNode</code>의 바로 앞에 삽입합니다. {{domxref("DOMString")}} 객체는 {{domxref("Text")}} 노드와 동일하게 삽입됩니다.</dd>
 <dt>{{domxref("ChildNode.after()")}} {{experimental_inline}}</dt>
 <dd>{{domxref("Node")}} 또는 {{domxref("DOMString")}} 객체의 집합을 부모의 자식 목록에서 <code>ChildNode</code>의 바로 뒤에 삽입합니다. {{domxref("DOMString")}} 객체는 {{domxref("Text")}} 노드와 동일하게 삽입됩니다.</dd>
 <dt>{{domxref("ChildNode.replaceWith()")}} {{experimental_inline}}</dt>
 <dd>부모의 자식 목록에 있는 <code>ChildNode</code>{{domxref("Node")}} 또는 {{domxref("DOMString")}} 객체의 집합으로 대체합니다.{{domxref("DOMString")}} 객체는 {{domxref("Text")}} 노드와 동일하게 삽입됩니다.</dd>
</dl>

<h2 id="명세">명세</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">명세</th>
   <th scope="col">상태</th>
   <th scope="col">코멘트</th>
  </tr>
  <tr>
   <td>{{SpecName('DOM WHATWG', '#interface-childnode', 'ChildNode')}}</td>
   <td>{{Spec2('DOM WHATWG')}}</td>
   <td><code>ElementTraversal</code> 인터페이스를 {{domxref("ParentNode")}}<code>ChildNode</code>로 분리합니다. <code>previousElementSibling</code><code>nextElementSibling</code>은 이제 마지막에 정의됩니다. {{domxref("CharacterData")}}{{domxref("DocumentType")}}은 새 인터페이스를 구현했습니다. <code>remove()</code>, <code>before()</code>, <code>after()</code><code>replaceWith()</code> 메소드가 추가되었습니다.</td>
  </tr>
  <tr>
   <td>{{SpecName('Element Traversal', '#interface-elementTraversal', 'ElementTraversal')}}</td>
   <td>{{Spec2('Element Traversal')}}</td>
   <td>프로퍼티의 초기 정의가 <code>ElementTraversal</code> 순수 인터페이스에 추가되었고 {{domxref("Element")}}에서 사용합니다.</td>
  </tr>
 </tbody>
</table>

<h2 id="폴리필">폴리필</h2>

<p>github의 외부 코드: <a href="https://github.com/seznam/JAK/blob/master/lib/polyfills/childNode.js">childNode.js</a></p>

<h2 id="브라우저_호환성">브라우저 호환성</h2>



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

<h2 id="참고">참고</h2>

<ul>
 <li>{{domxref("ParentNode")}} 순수 인터페이스.</li>
 <li>
  <div class="syntaxbox">순수 인터페이스를 구현한 객체 타입: {{domxref("CharacterData")}}, {{domxref("Element")}}{{domxref("DocumentType")}}.</div>
 </li>
</ul>