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

📄 teachers.xsl

📁 用遗传算法写的软件,非常有用! 值得大家一看!
💻 XSL
字号:
<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'><xsl:template match="Teacher"><table border="1" cellpadding="6"><tr>	<th colspan="10">	<xsl:value-of select="@name" />	</th></tr><tr><td>Emploi du temps</td>	<xsl:for-each select="/*/Teacher[1]/Day[1]/*">		<xsl:call-template name="header" />	</xsl:for-each></tr>	<xsl:for-each select="child::*"><tr>		<xsl:call-template name="days" /></tr>	</xsl:for-each></table></xsl:template><xsl:template name="header"><td>	<xsl:value-of select="@name" /></td></xsl:template><xsl:template name="days"><td><xsl:value-of select="@name" /></td>	<xsl:for-each select="child::*"><td style="width:14em;">		<xsl:for-each select="child::*">			<xsl:for-each select="child::*">				<xsl:value-of select="@name" /><br />			</xsl:for-each>		</xsl:for-each></td>	</xsl:for-each></xsl:template></xsl:stylesheet>

⌨️ 快捷键说明

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