blob: 8253f44f11a427bf2f9e1f6892fa92b484379bae (
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
51
52
53
54
55
56
57
58
59
60
|
---
title: '<xsl:sort>'
slug: Web/XSLT/Element/sort
translation_of: Web/XSLT/Element/sort
---
<p>{{ XsltRef() }}</p>
<p><code><xsl:sort></code> 要素は、<code><xsl:apply-templates></code> または <code><xsl:for-each></code> で選択されたノードのソートキーを定義し、それらが処理される順序を決定します。</p>
<h3 id="Syntax" name="Syntax">構文</h3>
<pre><xsl:sort
select=EXPRESSION
order="ascending" | "descending"
case-order="upper-first" | "lower-first"
lang=XML:LANG-CODE
data-type="text" | "number" /> </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>
</dl>
<dl>
<dt><code>order</code></dt>
<dd>ノードを "<code>ascending</code>" または "<code>descending</code>" に処理するかどうかを指定します。デフォルトは "<code>ascending</code>" です。</dd>
</dl>
<dl>
<dt><code>case-order</code></dt>
<dd>大文字か小文字かを最初に指示するかどうかを示します。許容される値は "<code>upper-first</code>" および "<code>lower-first</code>" である。</dd>
</dl>
<dl>
<dt><code>lang</code></dt>
<dd>ソートで使用する言語を指定します。</dd>
</dl>
<dl>
<dt><code>data-type</code></dt>
<dd>アイテムをアルファベット順または数値順に並べ替えるかどうかを定義します。 許容される値は "<code>text</code>" と "<code>number</code>" で、"<code>text</code>" がデフォルトです。</dd>
</dl>
<h3 id="Type" name="Type">タイプ</h3>
<p>Subinstructionは常に <xsl:for-each> の子として現れます。テンプレートの適切な場所または <xsl:apply-templates> の前に現れなければなりません。</p>
<h3 id="Defined" name="Defined">定義</h3>
<p>XSLT, section10.</p>
<h3 id="Gecko_support" name="Gecko_support">Gecko のサポート</h3>
<p>サポート済み</p>
|