⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex8-3.xsl

📁 < xml网页开发实例开发>>一书的全部源代码和实例
💻 XSL
字号:
<?xml version="1.0" encoding="GB2312"?>
<!-- edited with XML Spy v4.2 (http://www.xmlspy.com) by TMS (-BDMT-) -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<xsl:template match="/">
			<html>
			<body>
				<table border="2" bgcolor="yellow">
					<tr>
						<th>第一场</th>
						<th>第二场</th>
						<th>第三场</th>
					</tr>
					<xsl:for-each select="CnGame/Opponent">
						
							<td>
								<xsl:value-of select="TeamName"/>
							</td>
						
					</xsl:for-each>
				</table>
			</body>
		</html>
	</xsl:template>
</xsl:stylesheet>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -