?? table.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>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="網上書屋">
<center>
<table border="1">
<thead>
<th>姓名</th><th>E_mail</th><th>住址</th>
</thead>
<xsl:apply-templates/>
</table>
</center>
</xsl:template>
<xsl:template match="作者">
<tr>
<td><xsl:value-of select="姓名"/></td>
<td><xsl:value-of select="email"/></td>
<td><xsl:value-of select="住址"/></td>
</tr>
</xsl:template>
</xsl:stylesheet>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -