makehtml.xsl

来自「java核心技术源代码」· XSL 代码 · 共 32 行

XSL
32
字号
<?xml version="1.0" encoding="ISO-8859-1"?><xsl:stylesheet    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"    version="1.0">   <xsl:output method="html"/>   <xsl:template match="/staff">      <table border="1"><xsl:apply-templates/></table>   </xsl:template>   <xsl:template match="/staff/employee">      <tr><xsl:apply-templates/></tr>   </xsl:template>   <xsl:template match="/staff/employee/name">      <td><xsl:apply-templates/></td>   </xsl:template>   <xsl:template match="/staff/employee/salary">      <td>$<xsl:apply-templates/></td>   </xsl:template>   <xsl:template match="/staff/employee/hiredate">      <td><xsl:value-of select="@year"/>-<xsl:value-of       select="@month"/>-<xsl:value-of select="@day"/></td>   </xsl:template></xsl:stylesheet>

⌨️ 快捷键说明

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