?? test4-10.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" >
<xsl:template match="/">
<html>
<head>
<title>網上書屋</title>
</head>
<body>
<center><h1>阿當網上書屋</h1>
<table border="1">
<th>書名</th>
<th>作者</th>
<th>出版社</th>
<xsl:apply-templates select="網上書屋/分類/書籍" order-by="書名" />
</table>
</center>
</body>
</html>
</xsl:template>
<xsl:template match="書籍">
<tr>
<td><xsl:value-of select="書名" /></td>
<td><xsl:value-of select="作者"/></td>
<td><xsl:value-of select="出版社"/></td>
</tr>
</xsl:template>
</xsl:stylesheet>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -