以文本方式查看主题 - 中文XML论坛 - 专业的XML技术讨论区 (http://bbs.xml.org.cn/index.asp) -- 『 XSL/XSLT/XSL-FO/CSS 』 (http://bbs.xml.org.cn/list.asp?boardid=8) ---- XSL 的控制语句 (http://bbs.xml.org.cn/dispbbs.asp?boardid=8&rootid=&id=8901) |
-- 作者:diy930 -- 发布时间:7/21/2004 11:24:00 AM -- 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> <th>Title</th> <th>Artist</th> </tr> <xsl:for-each select="CATALOG/CD"> <xsl:if match=".[ARTIST='Bob Dylan']"> <tr> <td><xsl:value-of select="TITLE"/></td> <td><xsl:value-of select="ARTIST"/></td> </tr> </xsl:if> </xsl:for-each> </table> </body> </html> </xsl:template> </xsl:stylesheet>
2. XSL 的Choose choose的用途是出现多个条件,给出不同显示结果。具体的语法是增加一组xsl:choose,xsl:when,xsl:otherwise元素:
<xsl:choose> <xsl:when match=".[ARTIST='Bob Dylan']"> ... some code ... </xsl:when> <xsl:otherwise> ... some code .... </xsl:otherwise> </xsl:choose>
上面的例子改写成为: <?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> <th>Title</th> <th>Artist</th> </tr> <xsl:for-each select="CATALOG/CD"> <tr> <td><xsl:value-of select="TITLE"/></td> <xsl:choose> <xsl:when match=".[ARTIST='Bob Dylan']"> <td bgcolor="#ff0000"><xsl:value-of select="ARTIST"/></td> </xsl:when> <xsl:otherwise> <td><xsl:value-of select="ARTIST"/></td> </xsl:otherwise> </xsl:choose> </tr> </xsl:for-each> </table> </body> </html> </xsl:template> </xsl:stylesheet>
|
-- 作者:astime -- 发布时间:7/26/2004 12:12:00 PM -- 好 此主题相关图片如下: |
-- 作者:thomas_20 -- 发布时间:8/3/2005 10:47:00 AM -- 是地球人早就知道了 |
-- 作者:mengshj -- 发布时间:3/13/2006 3:45:00 PM -- 看得不是很懂 |
-- 作者:relax-fan12 -- 发布时间:3/27/2006 10:39:00 PM -- 写得不够清晰! |
-- 作者:woshiliqiang -- 发布时间:4/9/2006 8:26:00 PM -- 没错 写的不够清楚 |
W 3 C h i n a ( since 2003 ) 旗 下 站 点 苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》 |
78.125ms |