staff.xsl

来自「JS源码」· XSL 代码 · 共 33 行

XSL
33
字号
<?xml version='1.0'?>

<xsl:stylesheet version="1.0" 
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
    <html>
    <head>
    <title>Employee Directory</title>
    </head>
    <body>
      <h1 align="center">DemoCompany Directory</h1>
    <hr/>
    <table width="100%">
       <tr>
         <th>Name</th>
         <th>Title</th>
         <th>Phone</th>
         <th>Email</th>
       </tr>
       <xsl:for-each select="directory/employee">
       <tr>
         <td><xsl:value-of select="name"/></td> 
         <td><xsl:value-of select="title"/></td> 
         <td><xsl:value-of select="phone"/></td> 
         <td><xsl:value-of select="email"/></td> 
        </tr>
       </xsl:for-each>
       </table>
       </body>
       </html>
</xsl:template>
</xsl:stylesheet>

⌨️ 快捷键说明

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