blob: 72efb277301b10758070329ebbdcf5ff34bb7b15 (
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
|
---
title: position
slug: Web/XPath/Functions/position
tags:
- XSLT
- XSLT_Reference
translation_of: Web/XPath/Functions/position
---
<p>{{ XsltRef() }}</p>
<p><code>position</code> 関数は、式評価コンテキストのコンテキスト位置に等しい数値を返します。</p>
<h3 id="Syntax">構文</h3>
<pre class="eval">position()
</pre>
<h3 id="Returns">返値</h3>
<p>式評価コンテキストのコンテキスト位置に等しい整数。</p>
<h3 id="Notes">注</h3>
<ul>
<li>コンテキストにおけるノードの位置はゼロ起点ではないことに注意してください。最初のノードの位置は 1 です。</li>
</ul>
<ul>
<li>コンテキストはパスのほかの部分によって決定します。</li>
</ul>
<pre class="eval"><xsl:template match="//a[position() = 5]">
<!-- このテンプレートは文書内のあらゆる位置にある
5 番目の a 要素にマッチする -->
</xsl:template>
</pre>
<pre class="eval"><xsl:template match="//div[@class='foo']/bar[position() = 1]">
<!-- このテンプレートは class 属性が "foo" に等しい div 要素の子である
1 番目の bar 要素にマッチする -->
</xsl:template>
</pre>
<h3 id="Defined">定義</h3>
<p><a href="https://www.w3.org/TR/xpath#function-position">XPath 1.0 4.1</a></p>
<h3 id="Gecko_support">Gecko での対応</h3>
<p>対応済み。</p>
|