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

📄 package.xsl

📁 java编程思想的源码,11-16,和上次上传的1-10的源码是一块的,希望大家都能学好java
💻 XSL
字号:
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0">

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

<xsl:template match="package">   
  <h4><xsl:value-of select="."/></h4>
  <xsl:apply-templates select="classes" />
</xsl:template>

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

<xsl:template match="class">
  <xsl:element name="a">
    <xsl:attribute name="href"><xsl:value-of select="."/>.xml</xsl:attribute>
    <xsl:attribute name="target">classFrame</xsl:attribute>      
    <xsl:value-of select="."/>
    <br/>
  </xsl:element>
</xsl:template>

</xsl:stylesheet>

⌨️ 快捷键说明

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