100
<a>
    <xsl:attribute name="href"> 
     <xsl:value-of select="/*/properties/property[@name='report']/@value" />
    </xsl:attribute>
</a>    

有没有办法将另一个字符串连接到

<xsl:value-of select="/*/properties/property[@name='report']/@value"  />

除了报告属性值之外,我还需要将一些文本传递给 href 属性

4

6 回答 6

160

您可以在此处使用名为concat的命名相当合理的 xpath 函数

<a>
   <xsl:attribute name="href">
      <xsl:value-of select="concat('myText:', /*/properties/property[@name='report']/@value)" />
   </xsl:attribute>
</a>  

当然,这里不一定非得是文本,可以是另一个xpath表达式来选择一个元素或属性。您可以在 concat 表达式中包含任意数量的参数。

请注意,您可以在此处使用属性值模板(由大括号表示)来简化您的表达式

<a href="{concat('myText:', /*/properties/property[@name='report']/@value)}"></a>
于 2012-05-01T09:45:31.860 回答
28

三个答案:

简单的 :

<img>
    <xsl:attribute name="src">
        <xsl:value-of select="//your/xquery/path"/>
        <xsl:value-of select="'vmLogo.gif'"/>
    </xsl:attribute>
</img>

使用“连接”:

<img>
    <xsl:attribute name="src">
        <xsl:value-of select="concat(//your/xquery/path,'vmLogo.gif')"/>                    
    </xsl:attribute>
</img>

@TimC 建议的属性快捷方式

<img src="{concat(//your/xquery/path,'vmLogo.gif')}" />
于 2013-05-20T09:37:20.237 回答
16

使用

<a href="wantedText{/*/properties/property[@name='report']/@value)}"></a>
于 2012-05-01T12:28:08.213 回答
5

将静态文本字符串连接到选定值的最简单方法是使用元素。

<a>
  <xsl:attribute name="href"> 
    <xsl:value-of select="/*/properties/property[@name='report']/@value" />
    <xsl:text>staticIconExample.png</xsl:text>
  </xsl:attribute>
</a>
于 2013-07-11T07:51:11.887 回答
2

最简单的方法是

  <TD>
    <xsl:value-of select="concat(//author/first-name,' ',//author/last-name)"/>
  </TD>

当 XML 结构为

<title>The Confidence Man</title>
<author>
  <first-name>Herman</first-name>
  <last-name>Melville</last-name>
</author>
<price>11.99</price>
于 2017-10-18T06:09:57.517 回答
1

不是最易读的解决方案,但您可以将 value-of 的结果与纯文本混合:

<a>
  <xsl:attribute name="href"> 
    Text<xsl:value-of select="/*/properties/property[@name='report']/@value"/>Text
  </xsl:attribute>
</a>
于 2019-03-20T22:36:13.097 回答