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/xpath/functions/current | |
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/xpath/functions/current')
-rw-r--r-- | files/ja/web/xpath/functions/current/index.html | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/files/ja/web/xpath/functions/current/index.html b/files/ja/web/xpath/functions/current/index.html new file mode 100644 index 0000000000..406f279123 --- /dev/null +++ b/files/ja/web/xpath/functions/current/index.html @@ -0,0 +1,65 @@ +--- +title: current +slug: Web/XPath/Functions/current +tags: + - XSLT + - XSLT_Reference +translation_of: Web/XPath/Functions/current +--- +<p>{{ XsltRef() }}</p> + +<p><code>current</code>関数を使用して、XSLT命令でコンテキストノードを取得できます。</p> + +<h3 id="Syntax" name="Syntax">構文</h3> + +<pre class="eval">current() +</pre> + +<h3 id="Returns" name="Returns">戻り値</h3> + +<p>現在のノードのみを含むノード集合。</p> + +<h3 id="Notes" name="Notes">注記</h3> + +<p>この関数はXSLT固有のXPathへの追加です。コアXPath関数ライブラリの一部ではありません。</p> + +<p>一番外側の式(別の式内に現れない式)の場合、現在のノードは常にコンテキストノード(<code>.</code>または<code>self</code>構文によって返されます)と同じです。次の2つは意味的に同等です。</p> + +<pre class="eval"><xsl:value-of select="current()"/> +</pre> + +<pre class="eval"><xsl:value-of select="."/> +</pre> + +<p>内側の式(角括弧など)では、現在のノードは一番外側の式の場合と同じです。したがって、次の3つの式のすべてにおいて<code>current</code>関数(式全体ではない)が同じノードを返します。さらに、後者の2つは意味的に同等です。</p> + +<pre class="eval"><xsl:value-of select="current()"/> +</pre> + +<pre class="eval"><xsl:value-of select="foo/bar[current() = X]"/> +</pre> + +<pre class="eval"><xsl:variable name="current" select="current()"/> +<xsl:value-of select="foo/bar[$current = X]"/> +</pre> + +<p>そして、次のコードは最も外側の式に<code>.</code>があるので、後者のコードと意味的に同じです。</p> + +<pre class="eval"><xsl:variable name="current" select="."/> +<xsl:value-of select="foo/bar[$current = X]"/> +</pre> + +<p>しかし、<code>.</code>は常に最も狭い文脈に関係しています。したがって、</p> + +<pre class="eval"><xsl:value-of select="foo/bar[. = X]"/> +</pre> + +<p><code>.</code>は<code>bar</code>ノードを返します。これは現在のノードとは異なる場合があります。</p> + +<h3 id="Defined" name="Defined">定義</h3> + +<p><a class="external" href="http://www.w3.org/TR/xslt#function-current">XSLT 1.0 12.4</a></p> + +<h3 id="Gecko_support" name="Gecko_support">Gecko のサポート状況</h3> + +<p>サポート済み</p> |