0
<name><last-name>aaa</last-name><first-name>bbb</first-name></name>

模板是:

<xsl:template match="last-name">
  display first-name
</xsl:template>

这个怎么做?

4

2 回答 2

2

使用

<xsl:value-of select="../first-name"/>
于 2012-05-02T12:35:29.320 回答
1

对于这个输入...

<name>
  <last-name>aaa</last-name>
  <first-name>bbb</first-name>
</name>

这个样式表...

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>

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

<xsl:template match="first-name" />

<xsl:template match="last-name">
  <xsl:comment>for last-name of <xsl:value-of select="." /></xsl:comment>
  <first-name>
   <xsl:value-of select="following-sibling::*" />      
  </first-name>
</xsl:template>

</xsl:stylesheet>

...产生...

<?xml version="1.0" encoding="utf-8"?>
<!--for last-name of aaa--><first-name>bbb</first-name>
于 2012-05-02T07:23:15.817 回答