在href XSL中使用变量值

时间:2010-01-07 23:29:06

标签: xml xslt

我知道它非常基本的问题,但我刚开始阅读它......

我有一个变量名

<variable name="NAME">
http://www.yahoo.com/<xsl:value-of select="$someothervariable"/>
</variable>

我希望像这样使用它

我使用过这两种方法,但它没有用

<a href="{NAME}">HELLO</a>
<a href="<xsl:value-of select="$NAME"/>

知道怎么做到这一点......

谢谢,

2 个答案:

答案 0 :(得分:13)

您需要结合两种方法:

<xsl:variable name="NAME">yourValue</xsl:variable>
<a href="{$NAME}" />

答案 1 :(得分:0)

<a>
    <xsl:attribute name="href">
        <xsl:value-of select="//YOUR_VAR_NAME"/>
    </xsl:attribute>
    LINK_TEXT
</a>