⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 staff.xsl

📁 精通JavaScript动态网页编程(书)
💻 XSL
字号:
<?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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -