context.xsl
来自「Windows Web脚本开发指南/(美) Dan Heflin, Todd N」· XSL 代码 · 共 17 行
XSL
17 行
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<xsl:apply-templates select="SalesTransactions" />
</xsl:template>
<xsl:template match="SalesTransactions">
<xsl:apply-templates select="Year" />
</xsl:template>
<xsl:template match="Year">
<xsl:apply-templates select="January" />
</xsl:template>
<xsl:template match="January">
<xsl:for-each select="Transaction">
<P><xsl:value-of select="@Day" /></P>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?