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

📄 list_menu.xsl

📁 开源的 库存管理系统 www.minierp.cn php+ mysql
💻 XSL
字号:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format"><xsl:output encoding="utf-8" />
<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Untitled Document</title>
<style type="text/css">@import url("../themes/aqua/style.css");</style>
</head>

<body>
<xsl:apply-templates select="root" />
</body>
</html>

</xsl:template>
<xsl:template match="root">
 <table align="center" cellpadding="0" cellspacing="4" border="0">
    <tbody>
     
     <xsl:apply-templates select="menuitem" />  
     
    </tbody>
 </table> 
</xsl:template>
<xsl:template match="menuitem">  
   <tr>
    <td width="5" ></td>
    <td ><div align="center" style="padding: 0 2 0 2"><xsl:element name="a"><xsl:attribute name="href"><xsl:value-of select="menumodules"/>/<xsl:value-of select="action"/></xsl:attribute><xsl:value-of select="menuname"/></xsl:element></div></td>
    <td width="5" ></td>
   </tr>
 </xsl:template>
</xsl:stylesheet>

⌨️ 快捷键说明

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