aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/node/innertext/index.html
blob: 414fab5c00dc43bbde5dd60ed42016611b00b0f9 (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
87
88
---
title: Node.innerText
slug: Web/API/Node/innerText
tags:
  - API
  - DOM
  - HTMLElement
  - Property
  - Reference
translation_of: Web/API/HTMLElement/innerText
---
<div>{{APIRef("HTML DOM")}}</div>

<p><span class="seoSummary">{{domxref("HTMLElement")}} 인터페이스의 <code><strong>innerText</strong></code> 속성은 요소와 그 자손의 렌더링 된 텍스트 콘텐츠를 나타냅니다.</span> <code>innerText</code>는 사용자가 커서를 이용해 요소의 콘텐츠를 선택하고 클립보드에 복사했을 때 얻을 수 있는 텍스트의 근삿값을 제공합니다.</p>

<div class="blockIndicator note">
<p><strong>참고:</strong> <code>innerText</code>{{domxref("Node.textContent")}}와 혼동하기 쉬우나 중요한 차이점을 가지고 있습니다. 기본적으로, <code>innerText</code>는 텍스트의 렌더링 후 모습을 인식할 수 있지만 <code>textContent</code>는 그렇지 않습니다.</p>
</div>

<h2 id="구문">구문</h2>

<pre>const renderedText = <em>htmlElement</em>.innerText
<em>htmlElement</em>.innerText = <em>string</em>
</pre>

<h3 id="값"></h3>

<p>요소의 렌더링 된 텍스트 콘텐츠를 나타내는 {{domxref("DOMString")}}. 요소 자체가 <a href="https://html.spec.whatwg.org/multipage/rendering.html#being-rendered">렌더링 중</a>이 아니라면 {{domxref("Node.textContent")}} 속성의 값과 동일합니다.</p>

<h2 id="예제">예제</h2>

<p>다음 예제는 <code>innerText</code>{{domxref("Node.textContent")}}를 비교합니다. <code>innerText</code>{{htmlElement("br")}} 태그를 인식하고, 숨겨진 요소를 무시하는 점에 주목하세요.</p>

<h3 id="HTML">HTML</h3>

<pre class="brush: html">&lt;h3&gt;원본 요소:&lt;/h3&gt;
&lt;p id="source"&gt;
  &lt;style&gt;#source { color: red; }&lt;/style&gt;
아래에서&lt;br&gt;이 글을&lt;br&gt;어떻게 인식하는지 살펴보세요.
  &lt;span style="display:none"&gt;숨겨진 글&lt;/span&gt;
&lt;/p&gt;
&lt;h3&gt;textContent 결과:&lt;/h3&gt;
&lt;textarea id="textContentOutput" rows="6" cols="30" readonly&gt;...&lt;/textarea&gt;
&lt;h3&gt;innerText 결과:&lt;/h3&gt;
&lt;textarea id="innerTextOutput" rows="6" cols="30" readonly&gt;...&lt;/textarea&gt;</pre>

<h3 id="JavaScript">JavaScript</h3>

<pre class="brush: js">const source = document.getElementById('source');
const textContentOutput = document.getElementById('textContentOutput');
const innerTextOutput = document.getElementById('innerTextOutput');

textContentOutput.innerHTML = source.textContent;
innerTextOutput.innerHTML = source.innerText;</pre>

<h3 id="결과">결과</h3>

<p>{{EmbedLiveSample("예제", 700, 450)}}</p>

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

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('HTML WHATWG', 'dom.html#the-innertext-idl-attribute', 'innerText')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td>Introduced, based on the <a href="https://github.com/rocallahan/innerText-spec">draft of the innerText specification</a>. See <a href="https://github.com/whatwg/html/issues/465">whatwg/html#465</a> and <a href="https://github.com/whatwg/compat/issues/5">whatwg/compat#5</a> for history.</td>
  </tr>
 </tbody>
</table>

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



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

<h2 id="같이_보기">같이 보기</h2>

<ul>
 <li>{{domxref("HTMLElement.outerText")}}</li>
 <li>{{domxref("Element.innerHTML")}}</li>
</ul>