aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/xpath/axes/index.html
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/xpath/axes/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/xpath/axes/index.html')
-rw-r--r--files/ja/web/xpath/axes/index.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/files/ja/web/xpath/axes/index.html b/files/ja/web/xpath/axes/index.html
new file mode 100644
index 0000000000..a58bfa8eae
--- /dev/null
+++ b/files/ja/web/xpath/axes/index.html
@@ -0,0 +1,47 @@
+---
+title: Axes
+slug: Web/XPath/Axes
+tags:
+ - Transforming_XML_with_XSLT
+ - XPath
+ - XPath_Reference
+ - XSLT
+ - XSLT_Reference
+translation_of: Web/XPath/Axes
+---
+<p>{{ XsltRef() }} <a href="ja/XPath">XPath</a> 仕様では 13 種類の{{ 訳語("軸", "Axis") }}が定められています。軸はコンテクストノードとの関連性を表し、ツリー上でのノードのコンテクストノードからの相対的な位置を示すのに用いられます。以下は XPath で利用できる 13 種類の軸のごく簡単な説明と、<a href="/ja/docs/Mozilla/Gecko">Gecko</a> における対応状況を示したものです。</p>
+
+<p>XPath 式の使用に関するより詳しい情報は、<a href="ja/Transforming_XML_with_XSLT">XSLT による XML の変換</a>の記事の最後の<a href="ja/Transforming_XML_with_XSLT/For_Further_Reading">より詳しい読み物</a>の節を参照して下さい。</p>
+
+<dl>
+ <dt><a href="/ja/docs/Web/XPath/Axes/ancestor">ancestor</a></dt>
+ <dd>コンテクストノードの親ノードからルートノードまでの全ての祖先を示します。</dd>
+ <dt><a href="/ja/docs/Web/XPath/Axes/ancestor-or-self">ancestor-or-self</a></dt>
+ <dd>コンテクストノードと、その全てのルートノードを含む祖先を示します。</dd>
+ <dt><a href="/ja/docs/Web/XPath/Axes/attribute">attribute</a></dt>
+ <dd>コンテクストノードの属性を示します。属性を持つのは要素のみです。この軸はアットマーク (<code>@</code>) によって省略できます。</dd>
+ <dt><a href="/ja/docs/Web/XPath/Axes/child">child</a></dt>
+ <dd>コンテクストノードの子を示します。 XPath 式で軸が指定されていなければ、デフォルトでこの軸が指定されていると認識されます。子を持つのはルートノードか要素ノードのみなので、他のノードでこの軸を使用しても何も選択されません。</dd>
+ <dt><a href="/ja/docs/Web/XPath/Axes/descendant">descendant</a></dt>
+ <dd>コンテクストノードの全ての子と、その全ての子と、そのまた全ての・・・というように示します。属性ノードと名前空間ノードは<strong>含まれません</strong>。 <code>attribute</code> ノードの <code>parent</code> は要素ノードですが、<code>attribute</code> ノードはその要素ノードの子ではないからです。</dd>
+ <dt><a href="/ja/docs/Web/XPath/Axes/descendant-or-self">descendant-or-self</a></dt>
+ <dd>コンテクストノードと、その全ての子孫を示します。属性ノードと名前空間ノードは<strong>含まれません</strong>。 <code>attribute</code> ノードの <code>parent</code> は要素ノードですが、<code>attribute</code> ノードはその要素ノードの子ではないからです。</dd>
+ <dt><a href="/ja/docs/Web/XPath/Axes/following">following</a></dt>
+ <dd>コンテクストノードの後に現れる、<code>descendant</code>、<code>attribute</code>、<code>namespace</code> ノードを除く全てのノードを示します。</dd>
+ <dt><a href="/ja/docs/Web/XPath/Axes/following-sibling">following-sibling</a></dt>
+ <dd>コンテクストノードと同じ親を持ち、ソース文書内でコンテクストノードの後に現れる全てのノードを示します。</dd>
+ <dt><a href="/ja/docs/Web/XPath/Axes/namespace">namespace</a><em>(サポート対象外)</em></dt>
+ <dd>コンテクストノードのスコープ内にある全てのノードを示します。この場合、コンテクストノードは要素ノードでなければなりません。</dd>
+ <dt><a href="/ja/docs/Web/XPath/Axes/parent">parent</a></dt>
+ <dd>コンテクストノードの親である単一のノードを示します。この軸は 2 つのピリオド (<code>..</code>) によって省略できます。</dd>
+ <dt><a href="/ja/docs/Web/XPath/Axes/preceding">preceding</a></dt>
+ <dd>文書内でコンテクストノードの前に現れる、 <code>ancestor</code>、 <code>attribute</code> 、 <code>namespace</code> ノードを除く全てのノードを示します。</dd>
+ <dt><a href="/ja/docs/Web/XPath/Axes/preceding-sibling">preceding-sibling</a></dt>
+ <dd>コンテクストノードと同じ親を持ち、ソース文書内でコンテクストノードの前に現れる全てのノードを示します。</dd>
+ <dt><a href="/ja/docs/Web/XPath/Axes/self">self</a></dt>
+ <dd>コンテクストノード自身を示します。 この軸はピリオド (<code>.</code>) によって省略できます。</dd>
+</dl>
+
+<div class="noinclude"> </div>
+
+<p>{{QuickLinksWithSubpages("/ja/docs/Web/XPath")}}</p>