📄 classlist.xsl
字号:
<?xml version="1.0" encoding="gb2312"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html"/>
<xsl:param name="ClassName"/>
<xsl:param name="MemberName"/>
<xsl:template match="/">
<xsl:apply-templates select="ClassList" />
</xsl:template>
<xsl:template match="ClassList">
<div align="center">
<center>
<table border="0" cellpadding="5" cols="2" frame="below" rules="rows" width="760">
<tr>
<td height="60" align="center">
<b>
<font size="6" color="navy"><xsl:value-of select="ProjectName" /></font>
<font size="5" color="navy">类列表</font>
</b>
</td>
</tr>
</table>
</center>
</div>
<div align="center">
<center>
<table border="1" cellpadding="5" cols="2" frame="below" rules="rows" width="760" class="10pt">
<xsl:for-each select="class">
<xsl:sort select="@name" />
<tr>
<td width="20">
<xsl:element name="a">
<xsl:attribute name="href">
javascript:changePage('class.xsl','<xsl:value-of select="@name"/>','')
</xsl:attribute>
<b><xsl:value-of select="@name" /></b>
</xsl:element>
</td>
<td width="80%">
<xsl:value-of select="desc" disable-output-escaping="yes"/>
</td>
</tr>
</xsl:for-each>
</table>
</center>
</div>
<div align="center">
<table border="0" cellpadding="5" cols="2" frame="below" rules="rows" width="760">
<tr>
<td height="20">
</td>
</tr>
<tr class="12pt">
<td height="20">
<a href="http://www.KaileSoft.cn" target="_blank">凯乐软件</a>
</td>
</tr>
</table>
</div>
</xsl:template>
</xsl:stylesheet>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -