test4-8.xsl

来自「关于XML和网页配合使用的好书」· XSL 代码 · 共 22 行

XSL
22
字号

<?xml version='1.0' encoding="gb2312" ?>
<xsl:stylesheet
    xmlns:xsl="http://www.w3.org/TR/WD-xsl"
    xmlns="http://www.w3.org/TR/REC-html40" >
	
	<xsl:template match="/">
	   	<xsl:apply-templates/>
	</xsl:template>
	<xsl:template match="网上书屋">
	   	<xsl:apply-templates/>
	</xsl:template>
	<xsl:template match="分类[@类别='操作系统']">
        <h1>操作系统类书籍:</h1>
        <xsl:apply-templates />
	</xsl:template>
	<xsl:template match="书籍">
	   	<xsl:value-of select="."/><br/>
	</xsl:template>

</xsl:stylesheet>

⌨️ 快捷键说明

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