toplink.xsl

来自「开源的 库存管理系统 www.minierp.cn php+ mysql」· XSL 代码 · 共 14 行

XSL
14
字号
<?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:template match="/">
<xsl:apply-templates select="root" />
</xsl:template>
<xsl:template match="root">
  <div align="right" style="padding-right:10">
     <xsl:apply-templates select="menuitem" />  
  </div>
</xsl:template>
<xsl:template match="menuitem">      
<xsl:element name="a"><xsl:attribute name="href"><xsl:value-of select="menumodules"/>/<xsl:value-of select="action" />.php</xsl:attribute></xsl:element><xsl:value-of select="menuname"/>
 </xsl:template>
</xsl:stylesheet>

⌨️ 快捷键说明

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