aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/htmlelement/innertext/index.html
blob: e011cfef5b9885e09e3c4c3566adf0eb605296e7 (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
89
---
title: HTMLElement.innerText
slug: Web/API/HTMLElement/innerText
tags:
  - API
  - HTML DOM
  - HTMLElement
  - Property
  - Reference
  - プロパティ
translation_of: Web/API/HTMLElement/innerText
---
<div>{{APIRef("HTML DOM")}}</div>

<p><span class="seoSummary"><code><strong>innerText</strong></code>{{domxref("HTMLElement")}} のプロパティで、ノードとその子孫の「レンダリングされた」テキスト内容を示します。</span>ゲッターとして、カーソルで要素の内容を選択しクリップボードにコピーした際のテキストに近いものを取得することができます。</p>

<div class="blockIndicator note">
<p><strong>メモ:</strong> <code>innerText</code>{{domxref("Node.textContent")}} と混同しやすいのですが、両者には重要な違いがあります。基本的に <code>innerText</code> はテキストがレンダリングされる表示を意識しますが、 <code>textContent</code> はそうではありません。</p>
</div>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="syntaxbox notranslate">const <em>renderedText</em> = <em>htmlElement</em>.innerText
<em>htmlElement</em>.innerText = <em>string</em></pre>

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

<p>{{domxref("DOMString")}} で、要素の表示されたテキストの内容を表します。要素自身が<a href="https://html.spec.whatwg.org/multipage/rendering.html#being-rendered">表示されないとき</a> (例えば、文書から切り離されたり、表示から隠されたりしている場合)、返値は {{domxref("Node.textContent")}} プロパティと同じ値になります。</p>

<h2 id="Example" name="Example"></h2>

<p>この例では <code>innerText</code>{{domxref("Node.textContent")}} を比較しています。 <code>innerText</code>{{htmlElement("br")}} 要素のようなものをどのように意識するかや、非表示の要素を無視することに注意してください。</p>

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

<pre class="brush: html notranslate">&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 notranslate">const source = document.getElementById('source');
const textContentOutput = document.getElementById('textContentOutput');
const innerTextOutput = document.getElementById('innerTextOutput');

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

<h3 id="Result" name="Result">結果</h3>

<p>{{EmbedLiveSample("Example", 700, 450)}}</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('HTML WHATWG', 'dom.html#the-innertext-idl-attribute', 'innerText')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td>導入。 <a href="https://github.com/rocallahan/innerText-spec">innerText の仕様書の草稿</a>に基づく。履歴は <a href="https://github.com/whatwg/html/issues/465">whatwg/html#465</a> および <a href="https://github.com/whatwg/compat/issues/5">whatwg/compat#5</a> を参照。</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

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

<h2 id="See_also" name="See_also">関連情報</h2>

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