aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/xpathresult/snapshotitem
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/xpathresult/snapshotitem
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/xpathresult/snapshotitem')
-rw-r--r--files/ja/web/api/xpathresult/snapshotitem/index.html85
1 files changed, 85 insertions, 0 deletions
diff --git a/files/ja/web/api/xpathresult/snapshotitem/index.html b/files/ja/web/api/xpathresult/snapshotitem/index.html
new file mode 100644
index 0000000000..832a306960
--- /dev/null
+++ b/files/ja/web/api/xpathresult/snapshotitem/index.html
@@ -0,0 +1,85 @@
+---
+title: XPathResult.snapshotItem()
+slug: Web/API/XPathResult/snapshotItem
+tags:
+ - API
+ - DOM XPath API
+ - Method
+ - Reference
+ - XPath
+ - XPathResult
+ - メソッド
+translation_of: Web/API/XPathResult/snapshotItem
+---
+<div>{{APIRef("DOM XPath")}}</div>
+
+<p><strong><code>snapshotItem()</code></strong> は {{domxref("XPathResult")}} インターフェイスのメソッドで、アイテムのスナップショットのコレクション、または添字がノードの範囲を外れている場合は <code>null</code> を返します。イテレーターの返値とは異なり、スナップショットは無効になることはありませんが、変更したときに現在の文書に対応しない場合があります。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox">var <var>node</var> = <var>result</var>.snapshotItem(i);
+</pre>
+
+<h3 id="Return_Value" name="Return_Value">返値</h3>
+
+<p><code>XPathResult</code> のノードセット内の指定された添字の {{domxref("Node")}} です。</p>
+
+<h3 id="Exceptions" name="Exceptions">例外</h3>
+
+<h4 id="TYPE_ERR">TYPE_ERR</h4>
+
+<p>{{domxref("XPathResult.resultType")}} が <code>UNORDERED_NODE_SNAPSHOT_TYPE</code> または <code>ORDERED_NODE_SNAPSHOT_TYPE</code> でない場合、 {{domxref("XPathException")}} による例外が <code>TYPE_ERR</code> 型で発生します。</p>
+
+<h2 id="Example" name="Example">例</h2>
+
+<p>以下の例は <code>snapshotItem()</code> メソッドの使用例を表しています。</p>
+
+<h3 id="HTML">HTML</h3>
+
+<pre class="brush: html">&lt;div&gt;XPath example&lt;/div&gt;
+&lt;div&gt;Tag names of the matched nodes: &lt;output&gt;&lt;/output&gt;&lt;/div&gt;
+</pre>
+
+<h3 id="JavaScript">JavaScript</h3>
+
+<pre class="brush: js">var xpath = "//div";
+var result = document.evaluate(xpath, document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
+var node = null;
+var tagNames = [];
+for(var i = 0; i &lt; result.snapshotLength; i++) {
+ var node = result.snapshotItem(i);
+  tagNames.push(node.localName);
+}
+document.querySelector("output").textContent = tagNames.join(", ");
+</pre>
+
+<h3 id="Result" name="Result">結果</h3>
+
+<p>{{EmbedLiveSample('Example', 400, 70)}}</p>
+
+<h2 id="Specification" name="Specification">仕様書</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("DOM3 XPath", "xpath.html#XPathResult-snapshotItem", "XPathResult.snapshotItem()")}}</td>
+ <td>{{Spec2("DOM3 XPath")}}</td>
+ <td>初回定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<div>
+<div class="hidden">このページの互換性表は構造化データから作成されています。データに協力したい場合は、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送ってください。</div>
+
+<p>{{Compat("api.WindowOrWorkerGlobalScope.clearTimeout")}}</p>
+</div>