xslintemplate.xsl

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

XSL
31
字号
<?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 + =
减小字号Ctrl + -
显示快捷键?