<xsl:if> 的示例 3

以下 item 模板规则将每个其他表行标为黄色。

XML 文件 (items.xml)

XSLT 文件 (ifyellow.xsl)

输出

以下是格式化输出:

格式化输出

以下是处理器输出:

<html>

<body>

<table border="1" cellpadding="2" cellspacing="0" width="50%">

<tr>Car</tr>

<tr bgcolor="yellow">Pen</tr>

<tr>LP Record</tr>

<tr bgcolor="yellow">Wisdom</tr>

<tr>Cell phone</tr>

...

</table>

</body>

</html>

另请参见

概念

<xsl:if> 的示例 1
<xsl:if> 的示例 2
<xsl:if> 的示例 4