blob: 70e3baa8cb4a619cf9976e1d206a47de6c5fa024 (
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
|
---
title: CharacterData.remove()
slug: Web/API/CharacterData/remove
tags:
- API
- CharacterData
- DOM
- Method
browser-compat: api.CharacterData.remove
translation_of: Web/API/CharacterData/remove
---
<div>{{APIRef("DOM")}}</div>
<p><code><strong>CharacterData.remove()</strong></code> メソッドは、テキストを削除します。</p>
<h2 id="Syntax">構文</h2>
<pre class="brush: js">remove()</pre>
<h2 id="Example">例</h2>
<h3 id="Using_remove"><code>remove()</code> の使用</h3>
<pre class="brush: html">
<p id="myText">Some text</p>
</pre>
<pre class="brush: js">let text = document.getElementById('myText').firstChild;
text.remove(); // テキストを削除
</pre>
<pre class="brush: html">
<p id="myText"></p>
</pre>
<h2 id="Specifications">仕様書</h2>
{{Specifications}}
<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat}}</p>
<h2 id="See_also">関連情報</h2>
<ul>
<li>{{domxref("Element.remove()")}}</li>
</ul>
|