📄 例7-5.xsl
字号:
<?xml version="1.0" encoding="GB2312" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<html>
<xsl:apply-templates/>
</html>
</xsl:template>
<xsl:template match="BookLib">
<body>
<xsl:apply-templates/>
</body>
</xsl:template>
<xsl:template match="Book">
<xsl:apply-templates select="Title | Author"/>
</xsl:template>
<xsl:template match="Title">
<Font size="3" color="#0000FF">
<BR></BR><xsl:value-of select="."/>
</Font>
</xsl:template>
<xsl:template match="Author">
<Font size="3" color="#FF0000">
<xsl:value-of select="."/>
</Font>
</xsl:template>
<xsl:template match="PressDate">
<Font size="3" color="#FF00FF">
<xsl:value-of select="."/>
</Font>
</xsl:template>
<xsl:template match="Price">
<Font size="3" color="#999999">
<xsl:value-of select="."/>
</Font>
</xsl:template>
</xsl:stylesheet>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -