aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/xslt/element/apply-templates/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/xslt/element/apply-templates/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/xslt/element/apply-templates/index.html')
-rw-r--r--files/ja/web/xslt/element/apply-templates/index.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/files/ja/web/xslt/element/apply-templates/index.html b/files/ja/web/xslt/element/apply-templates/index.html
new file mode 100644
index 0000000000..67b4859543
--- /dev/null
+++ b/files/ja/web/xslt/element/apply-templates/index.html
@@ -0,0 +1,45 @@
+---
+title: '<xsl:apply-templates>'
+slug: Web/XSLT/Element/apply-templates
+tags:
+ - XSLT
+ - apply-templates
+ - リファレンス
+ - 要素
+translation_of: Web/XSLT/Element/apply-templates
+---
+<p>{{ XsltRef() }}</p>
+
+<p><code>&lt;xsl:apply-templates&gt;</code> 要素は、入力ツリー内のノードのセットを選択し、適切なテンプレートを適用するようにプロセッサに指示します。</p>
+
+<h3 id="Syntax" name="Syntax">構文</h3>
+
+<pre>&lt;xsl:apply-templates select=EXPRESSION mode=NAME&gt;
+ &lt;xsl:with-param&gt; [optional]
+ &lt;xsl:sort&gt; [optional]
+&lt;/xsl:apply-templates&gt;</pre>
+
+<h3 id="Required_Attributes" name="Required_Attributes">必須属性</h3>
+
+<p>なし</p>
+
+<h3 id="Optional_Attributes" name="Optional_Attributes">任意属性</h3>
+
+<dl>
+ <dt><code>select</code></dt>
+ <dd>処理するノードを指定する XPath 式を使用します。アスタリスク (*) はノードセット全体を選択します。この属性が設定されていない場合は、現在のノードのすべての子ノードが選択されます。</dd>
+ <dt><code>mode</code></dt>
+ <dd>同じノードに対して複数の処理方法が定義されている場合は、それらを区別します。</dd>
+</dl>
+
+<h3 id="Type" name="Type">タイプ</h3>
+
+<p>命令は、テンプレート内に表示されます。</p>
+
+<h3 id="Defined" name="Defined">定義</h3>
+
+<p>XSLT section 5.4.</p>
+
+<h3 id="Gecko_support" name="Gecko_support">Gecko のサポート</h3>
+
+<p>サポート済み</p>