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

📄 usage2.xsl

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

<!-- Fig. D.14 : usage2.xsl    -->
<!-- xsl:import example        -->

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

   <xsl:template match = "book">
      <html>

         <body>
            <xsl:apply-templates/>
         </body>
      </html>

   </xsl:template>

   <xsl:template match = "title">
      <xsl:value-of select = "."/>
   </xsl:template>

   <xsl:template match = "author">
      <br/>

      <p>Author:
         <xsl:value-of select = "lastName"/>,
         <xsl:value-of select = "firstName"/>
      </p>

   </xsl:template>

   <xsl:template match = "*|text()"/>

</xsl:stylesheet>

⌨️ 快捷键说明

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