aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/xpathresult/snapshotitem/index.html
blob: ce9c658e0e0e238e8080fdc80144354d88d6c4c4 (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
78
79
80
81
82
83
---
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>
<p>{{Compat("api.WindowOrWorkerGlobalScope.clearTimeout")}}</p>
</div>