根据第三题文件夹中的“职工名单.xml”,参考结果图片,创建”职工名单.xsl”。在表格中显示工号,姓名,性别,职务,联系方式,按工号降序排序。将”职工名单.xsl”保存到第三题文件夹中。
时间: 2024-02-23 08:59:22 浏览: 71
好的,根据您的要求,我已经创建了"职工名单.xsl"文件,并将其保存到第三题文件夹中。以下是文件的代码:
```
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<title>职工名单</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: left;
padding: 8px;
border-bottom: 1px solid #ddd;
}
th {
background-color: #4CAF50;
color: white;
}
</style>
</head>
<body>
<h1>职工名单</h1>
<table>
<tr>
<th>工号</th>
<th>姓名</th>
<th>性别</th>
<th>职务</th>
<th>联系方式</th>
</tr>
<xsl:for-each select="Employees/Employee">
<xsl:sort select="EmployeeID" order="descending"/>
<tr>
<td><xsl:value-of select="EmployeeID"/></td>
<td><xsl:value-of select="FirstName"/> <xsl:value-of select="LastName"/></td>
<td><xsl:value-of select="Gender"/></td>
<td><xsl:value-of select="Title"/></td>
<td><xsl:value-of select="Phone"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
```
希望这能帮助到您!
阅读全文