library.xsl

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

XSL
37
字号
<?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"
    result-ns="">
	<xsl:template match="/">
	<html xmlns:xsl="http://www.w3.org/TR/WD-xsl">
	<head>
	<title>
	<xsl:for-each select="library">
		<xsl:value-of select="@name"/>
	</xsl:for-each>
	</title>
	</head> 
	<body>
	<xsl:for-each select="library">
	    <h1 align="center">
		<xsl:value-of select="@name"/>
		在线图书目录
	    </h1>

	   <xsl:for-each select="book">
		<h4 align="center">
		
		《<xsl:value-of select="@name"/>》
		------
		<xsl:value-of select="@publish"/>
		</h4>
	   </xsl:for-each>
	</xsl:for-each>

	</body>
	</html>
	</xsl:template>
</xsl:stylesheet>

⌨️ 快捷键说明

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