dirlist.xsl
来自「很把错的图书管理系统——是学校教学的很好的范例」· XSL 代码 · 共 52 行
XSL
52 行
<?xml version="1.0" encoding="gb2312" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<html>
<head>
</head>
<body topmargin="0" background="images/zapsmbknd.gif">
<table WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0">
<tr>
<td colspan="2"><img SRC="images/win16.gif" WIDTH="16" HEIGHT="16" /><font style="font-family:隶书,Arial;font-size:20px;font-weight:bold">广信书库</font></td>
</tr>
</table>
<xsl:apply-templates select="/dir" />
</body>
</html>
</xsl:template>
<xsl:template match="dir">
<table WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0">
<tr>
<td colspan="2">
<xsl:value-of select="childNumber(this)" />
<a href="#aa2" onclick="diva_show('2','0');" id="link2">
<img name="f2" SRC="images/plus1.gif" border="0" WIDTH="16" HEIGHT="18" />
<img name="i2" SRC="images/icon_book_close.gif" border="0" /><xsl:value-of select="@title" /><br /></a><br />
</td>
</tr>
</table>
<table WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0">
<tr>
<td width="18"></td>
<td>
<xsl:if test="dir"><xsl:apply-templates /></xsl:if>
</td>
</tr>
</table>
</xsl:template>
</xsl:stylesheet>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?