我想用“string [1]”替换“Test.png”...示例“Test.png”=> “Fail.png”......
如何在XSL中执行此操作?
<xsl:when test="string[1] = 'Fail'">
<td> <a href="http://www.google.com/"><img src="Test.png" height="182" width="182"></img></a></td>
</xsl:when>
<xsl:otherwise>
<td> </td>
</xsl:otherwise>
</xsl:choose>
谢谢, Muthu Selvan SR
答案 0 :(得分:1)
使用 attribute value template :src="{string[1]}.png"
样式表中文字结果元素中的单个属性规范可以包含任意数量的属性值模板。每个都被视为<xsl:value-of>
。