📄 ex8-5.xsl
字号:
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XML Spy v3.5 (http://www.xmlspy.com) by () -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<table border="2" bgcolor="yellow">
<tr>
<th>闃熷悕</th>
<th>鍦哄湴</th>
</tr>
<xsl:for-each select="CnGame/Opponent">
<tr>
<th>
<xsl:value-of select="TeamName"/>
</th>
<xsl:choose>
<xsl:when test="Place='闊╁浗姹夊煄'">
<td bgcolor="#ff0000">
<xsl:value-of select="Place"/>
</td>
</xsl:when>
<xsl:when test="Place='闊╁浗鍏夊窞'">
<td bgcolor="#0000ff">
<xsl:value-of select="Place"/>
<xsl:text disable-output-escaping="no">fdsa</xsl:text>
</td>
</xsl:when>
<xsl:otherwise>
<td><xsl:value-of select="Place"/></td>
</xsl:otherwise>
</xsl:choose>
<!--<th>
<xsl:value-of select="Place"/>
</th>
-->
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -