例7-4.xsl

来自「深入浅出XML示例下载」· XSL 代码 · 共 38 行

XSL
38
字号
<?xml version="1.0" encoding="GB2312"  ?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
  <html>
   <xsl:apply-templates/>
  </html>
</xsl:template>
 <xsl:template match="PERIODIC_TABLE">
      <body>
       <xsl:apply-templates/>
      </body>
 </xsl:template>
   <xsl:template match="ATOM">
      一个原子<BR></BR>
   </xsl:template>
</xsl:stylesheet>





















⌨️ 快捷键说明

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