blob: 443250641dcff8a9a119b4f4a8555c3573a56a4d (
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
|
---
title: DOMTokenList.remove()
slug: Web/API/DOMTokenList/remove
translation_of: Web/API/DOMTokenList/remove
---
<p>{{APIRef("DOM")}}</p>
<p><code><strong>remove()</strong></code> 方法从 {{domxref("DOMTokenList")}} 中移除指定标记。</p>
<h2 id="语法">语法</h2>
<pre class="syntaxbox">tokenList.remove(token1[, token2[, ...]]);</pre>
<h3 id="参数列表">参数列表</h3>
<dl>
<dt>token<em>N</em>...</dt>
<dd>表示要从列表中移除的一个 {{domxref("DOMString")}}。如果列表中不存在该字符串,不会出错也没有任何变化。</dd>
</dl>
<h3 id="返回值">返回值</h3>
<p><code>undefined</code></p>
<h2 id="示例">示例</h2>
<p>在下面的示例中,我们使用 {{domxref("Element.classList")}} 检索 {{htmlelement("span")}} 元素上设置的class列表作为DOMTokenList。然后从列表中删除一个标记,并将该列表写入<code><span></code>的 {{domxref("Node.textContent")}} 中。</p>
<p>HTML:</p>
<pre class="brush: html"><span class="a b c"></span></pre>
<p>JavaScript:</p>
<pre class="brush: js">var span = document.querySelector("span");
var classes = span.classList;
classes.remove("c");
span.textContent = classes;
</pre>
<p>输出如下:</p>
<p>{{ EmbedLiveSample('Examples', '100%', 60) }}</p>
<p>要一次删除多个class,可以提供多个标记。书写顺序不必与它们在列表中出现的顺序匹配:</p>
<pre class="brush: js">let span = document.getElementsByTagName("span")[0],
classes = span.classList;
classes.remove("c", "b");
span.textContent = classes;
</pre>
<h2 id="描述">描述</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('DOM WHATWG','#dom-domtokenlist-remove','remove()')}}</td>
<td>{{Spec2('DOM WHATWG')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("api.DOMTokenList.remove")}}</p>
|