English | Français | Deutsch | Magyar | >> 中文 << | Polski ZVON > Tutorials > XSLT Tutorial
>> 页 8 << | 上一条 | 下一条 | 目录 | 元素索引

模板可以通过一组位置路径得到匹配,各个路径用 "|" 符号来分隔 ( XSLT stylesheet 1 )。通配符 "*" 能与任意情况匹配。比较 XSLT stylesheet 1XSLT stylesheet 2

XSLT stylesheet 1

XML源码
<source>

<employee>
     <firstName>Joe</firstName>
     <surname>Smith</surname>
</employee>

</source>

输出
<div>[template: firstName outputs Joe ]</div>

<div>[template: surname outputs Smith ]</div>

用HTML察看
[template: firstName outputs Joe ]
[template: surname outputs Smith ]
XSLT stylesheet
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="firstName|surname">
     <div>
          <xsl:text>[template: </xsl:text>
          <xsl:value-of select="name()"/>
          <xsl:text> outputs </xsl:text>
          <xsl:apply-templates/>
          <xsl:text> ]</xsl:text>
     </div>
</xsl:template>


</xsl:stylesheet>


XSLT stylesheet 2

XML源码
<source>

<employee>
     <firstName>Joe</firstName>
     <surname>Smith</surname>
</employee>

</source>

输出
<div>[template: source outputs
<div>[template: employee outputs
<div>[template: firstName outputs Joe ]</div>

     <div>[template: surname outputs Smith ]</div>
]</div>
]</div>

用HTML察看
[template: source outputs
[template: employee outputs
[template: firstName outputs Joe ]
[template: surname outputs Smith ]
]
]
XSLT stylesheet
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="*">
     <div>
          <xsl:text>[template: </xsl:text>
          <xsl:value-of select="name()"/>
          <xsl:text> outputs </xsl:text>
          <xsl:apply-templates/>
          <xsl:text> ]</xsl:text>
     </div>
</xsl:template>


</xsl:stylesheet>