blob: 38e6ff01a3ecff52dbd5b9562d27dcc1a9cbf48e (
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
|
---
title: '<xsl:otherwise>'
slug: Web/XSLT/Element/otherwise
tags:
- XSLT
- otherwise
- リファレンス
- 要素
translation_of: Web/XSLT/Element/otherwise
---
<p>{{ XsltRef() }}</p>
<p><code><xsl:otherwise></code> 要素は <code><xsl:when></code> 条件のいずれも適用されない場合に実行されるアクションを定義するために使用されます。他のプログラミング言語の <code>else</code> または <code>default</code> の場合と似ています。</p>
<h3 id="Syntax" name="Syntax">構文</h3>
<pre><xsl:otherwise>
TEMPLATE
</xsl:otherwise></pre>
<h3 id="Required_Attributes" name="Required_Attributes">必須属性</h3>
<p>なし</p>
<h3 id="Optional_Attributes" name="Optional_Attributes">任意属性</h3>
<p>なし</p>
<h3 id="Type" name="Type">タイプ</h3>
<p>サブ命令は <code><xsl:choose></code> 要素の最後の子としてテンプレート内に現れなければなりません。</p>
<h3 id="Defined" name="Defined">定義</h3>
<p>XSLT, section 9.2</p>
<h3 id="Gecko_support" name="Gecko_support">Gecko のサポート</h3>
<p>サポート済み</p>
|