diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/domstringlist | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/domstringlist')
-rw-r--r-- | files/ja/web/api/domstringlist/index.html | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/files/ja/web/api/domstringlist/index.html b/files/ja/web/api/domstringlist/index.html new file mode 100644 index 0000000000..27c3d8eb74 --- /dev/null +++ b/files/ja/web/api/domstringlist/index.html @@ -0,0 +1,54 @@ +--- +title: DOMStringList +slug: Web/API/DOMStringList +tags: + - API + - DOM + - DOMStringList + - Reference +translation_of: Web/API/DOMStringList +--- +<p>{{APIRef("DOM")}}</p> + +<p><a href="/ja/DOM/DOMString" title="ja/DOM/DOMString">DOMString</a> (strings) のリストを含むいくつかの API が返す型です。</p> + +<h2 id="Properties" name="Properties">プロパティ</h2> + +<dl> + <dt>{{domxref("DOMStringList.length")}} {{ReadOnlyInline}}</dt> + <dd>リストの長さを返す。</dd> +</dl> + +<h2 id="Methods" name="Methods">メソッド</h2> + +<dl> + <dt>{{domxref("DOMStringList.item()")}}</dt> + <dd>{{domxref("DOMString")}} を返す。</dd> + <dt>{{domxref("DOMStringList.contains()")}}</dt> + <dd>与えられた文字列がリストに含まれるかどうかを示す {{jsxref("Boolean")}} を返す。</dd> +</dl> + +<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", "common-dom-interfaces.html#the-domstringlist-interface", "DOMStringList")}}</td> + <td>{{Spec2("HTML WHATWG")}}</td> + <td>初期定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2> + + + +<p>{{Compat("api.DOMStringList")}}</p> |