0
<xsl:value-of select="$variable1"/>
<xsl:value-of select="$variable2"/>

variable1 将是 $variable2 的值。我该怎么做呢?

4

2 回答 2

0

你不能。你可以做的是这样的:

<xsl:stylesheet 
  version="1.0" 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">

  <xsl:output method="xml" indent="yes"/>

  <!-- Dictionary mapping names to values -->
  <xsl:variable name="dict">
    <value name="var1">1</value>
    <value name="var2">2</value>
  </xsl:variable>

  <xsl:template match="/">
    <!-- Name of the value in 'variable1' -->
    <xsl:variable name="variable1" select="'var1'"/>
    <!-- Get the value in 'variable2' using 'variable1' -->
    <xsl:variable name="variable2" select="msxsl:node-set($dict)/value[@name=$variable1]"/>
    <root>
      <xsl:text>variable2: </xsl:text><xsl:value-of select="$variable2"/>
    </root>
  </xsl:template>

</xsl:stylesheet>

msxsl:node-set是 Microsoft 特定的扩展,用于将片段转换为节点集。如果您使用的是非 Microsoft 处理器,则应该有可用的等效功能。

于 2013-03-19T01:11:28.713 回答
0

与大多数编程语言一样,XSLT 变量名在运行时不可访问。

所以,解释你为什么要这样做——你想解决什么问题——我们可以向你展示解决它的正确方法。

于 2013-03-19T08:34:32.630 回答