HTML属性中的XSL值

时间:2016-09-21 08:28:09

标签: xml xslt

使用XSL我想生成一些如下所示的HTML

<span title="some text">some other text</span>

更换some other text很容易

<span title="some text"><xsl:value-of select="$someothertext"/></span>

如何为some text做到这一点?此文本位于HTML元素的属性中,因此这将成为无效的XSL。

2 个答案:

答案 0 :(得分:1)

您可以使用属性的属性标记:

<span>
  <xsl:attribute name="title">
    <xsl:value-of select="$sometext" />
  </xsl:attribute>
</span>

答案 1 :(得分:1)

简单的方法是使用 attribute value template

<span title="{$sometext}"><xsl:value-of select="$someothertext"/></span>