From b15d60e3584608583432c5a3ce85aae4d55d317c Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Fri, 4 Feb 2022 23:42:52 +0900 Subject: 2021/09/15 時点の英語版に同期 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../api/documentfragment/queryselectorall/index.md | 32 +++++++++------------- 1 file changed, 13 insertions(+), 19 deletions(-) diff --git a/files/ja/web/api/documentfragment/queryselectorall/index.md b/files/ja/web/api/documentfragment/queryselectorall/index.md index a5fc005a4b..3787a0148c 100644 --- a/files/ja/web/api/documentfragment/queryselectorall/index.md +++ b/files/ja/web/api/documentfragment/queryselectorall/index.md @@ -5,49 +5,43 @@ tags: - API - DOM - DocumentFragment - - Method + - メソッド browser-compat: api.DocumentFragment.querySelectorAll +translation_of: Web/API/DocumentFragment/querySelectorAll --- {{ApiRef("DOM")}} -The **`DocumentFragment.querySelectorAll()`** method returns a -{{domxref("NodeList")}} of elements within the {{domxref("DocumentFragment")}} (using -depth-first pre-order traversal of the document's nodes) that matches the specified -group of selectors. +**`DocumentFragment.querySelectorAll()`** メソッドは {{domxref("NodeList")}} で、 {{domxref("DocumentFragment")}} の中で指定されたセレクター群に一致する要素の一覧を(文書ノードの深さ優先前順走査 (depth-first pre-order traversal) を使用して)返します。 -If the selectors specified in parameter are invalid a {{domxref("DOMException")}} with -a `SYNTAX_ERR` value is raised. +引数で指定されたセレクターが無効であった場合、 {{domxref("DOMException")}} が `SYNTAX_ERR` の値で発生します。 -## Syntax +## 構文 ```js elementList = documentfragment.querySelectorAll(selectors); ``` -### Parameters +### 引数 - _selectors_ - - : Is a {{domxref("DOMString")}} containing one or more CSS selectors separated by - commas. + - : {{domxref("DOMString")}} で、1 つ以上の CSS セレクターをカンマで区切って指定します。 -## Examples +## 例 -This example returns a list of all `div` elements within the -`DocumentFragment` with a class of either "`note`" or -"`alert`": +この例は、 `DocumentFragment` の中にあるすべての `div` 要素のうち、 "`note`" または "`alert`" クラスのついたものすべてのリストを返します。 ```js var matches = documentfrag.querySelectorAll("div.note, div.alert"); ``` -## Specifications +## 仕様書 {{Specifications}} -## Browser compatibility +## ブラウザーの互換性 {{Compat}} -## See also +## 関連情報 -- The {{domxref("DocumentFragment")}} interface it belongs to. +- 所属する {{domxref("DocumentFragment")}} インターフェイス -- cgit v1.2.3-54-g00ecf