使用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。
答案 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>