七. XSL 的控制语句
1.条件语句if...then
XSL同样还有条件语句(呵呵~~好厉害吧,象程序语言一样)。具体的语法是增加一个xsl:if元素,类似这样
xsl:if match=".[ARTIST='Bob Dylan']"
... some output ...
/xsl:if
上面的例子改写成为:
?xml version='1.0'?
xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl"
xsl:template match="/"
html
body
table border="2" bgcolor="yellow"
tr
thTitle/th
thArtist/th
/tr
xsl:for-each select="CATALOG/CD"
xsl:if match=".[ARTIST='Bob Dylan']"
tr