aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-04-18 10:46:40 +0900
committerGitHub <noreply@github.com>2021-04-18 10:46:40 +0900
commit0541ceb1d2f51ce7fa355e6854801b45af949f05 (patch)
treec0fad4ae0308912e56a6b4e460c16a02fa019d11
parentf935f08fa2e4be5465eb8c7398888bf96136e54b (diff)
downloadtranslated-content-0541ceb1d2f51ce7fa355e6854801b45af949f05.tar.gz
translated-content-0541ceb1d2f51ce7fa355e6854801b45af949f05.tar.bz2
translated-content-0541ceb1d2f51ce7fa355e6854801b45af949f05.zip
Web/API/DOMTokenList/value を新規翻訳 (#434)
2021/02/20 の英語版に基づき新規翻訳
-rw-r--r--files/ja/web/api/domtokenlist/value/index.html65
1 files changed, 65 insertions, 0 deletions
diff --git a/files/ja/web/api/domtokenlist/value/index.html b/files/ja/web/api/domtokenlist/value/index.html
new file mode 100644
index 0000000000..f2ced2a467
--- /dev/null
+++ b/files/ja/web/api/domtokenlist/value/index.html
@@ -0,0 +1,65 @@
+---
+title: DOMTokenList.value
+slug: Web/API/DOMTokenList/value
+tags:
+- API
+- DOM
+- DOMTokenList
+- Property
+- Reference
+- value
+translation_of: Web/API/DOMTokenList/value
+---
+<p>{{APIRef("DOM")}}</p>
+
+<p><code><strong>value</strong></code> は {{domxref("DOMTokenList")}} インターフェイスのプロパティで、リストの値を {{domxref("DOMString")}} として文字列化して返したり、リストを空にして渡された値に設定したりします。</p>
+
+<h2 id="Syntax">構文</h2>
+
+<pre class="brush: js"><var>tokenList</var>.value;</pre>
+
+<h3 id="Value">値</h3>
+
+<p>{{domxref("DOMString")}}</p>
+
+<h2 id="Examples">例</h2>
+
+<p>次の例は、 {{domxref("Element.classList")}} を使用して {{htmlelement("span")}} 要素に設定されたクラスのリストを <code>DOMTokenList</code> として取得し、リストの値を <code>&lt;span&gt;</code> の {{domxref("Node.textContent")}} の中に書き込みます。</p>
+
+<p>最初に HTML です。</p>
+
+<pre class="brush: html">&lt;span class="a b c"&gt;&lt;/span&gt;</pre>
+
+<p>そして JavaScript です。</p>
+
+<pre class="brush: js">let span = document.querySelector("span");
+let classes = span.classList;
+span.textContent = classes.value;
+</pre>
+
+<p>出力結果は以下のようになります。</p>
+
+<p>{{ EmbedLiveSample('Examples', '100%', 60) }}</p>
+
+<h2 id="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('DOM WHATWG','#dom-domtokenlist-value','value')}}</td>
+ <td>{{Spec2('DOM WHATWG')}}</td>
+ <td>初回定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
+
+<p>{{Compat("api.DOMTokenList.value")}}</p>