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

📄 elements.xsl

📁 java 编程源代码
💻 XSL
字号:
<?xml version = "1.0"?>

<!-- Fig. D.6 : elements.xsl             -->
<!-- Using xsl:element and xsl:attribute -->

<xsl:stylesheet version = "1.0" 
   xmlns:xsl = "http://www.w3.org/1999/XSL/Transform">

   <xsl:template match = "/">
      <xsl:apply-templates/>
   </xsl:template>

   <xsl:template match = "sports">
      <sports>
         <xsl:apply-templates/>
      </sports>
   </xsl:template>

   <xsl:template match = "game">
      <xsl:element name = "@title">

         <xsl:attribute name = "id">
            <xsl:value-of select = "id"/>
         </xsl:attribute>

         <comment>
            <xsl:value-of select = "para"/>
         </comment>

      </xsl:element> 
   </xsl:template>

</xsl:stylesheet>

⌨️ 快捷键说明

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