📄 library4.xsl
字号:
<?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="@adamspace:name"/>
</xsl:for-each>
</title>
</head>
<body>
<xsl:for-each select="library">
<h1 align="center">
<xsl:value-of select="@adamspace:name"/>
在线图书目录
</h1>
<xsl:for-each select="adamspace:book">
<h4 align="center">
《<xsl:value-of select="adamspace:name"/>》
------
<xsl:value-of select="adamspace:publish"/>
</h4>
</xsl:for-each>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -