我想在这里看到要连接到 String abc=' 的变量 'vari' 的前几个字符:
href="{concat('abc=', substring-before('vari', '='))}"
这是整个片段:
<xsl:template match="report:subelement">
<tr>
<td>
<message>
<xsl:variable name="vari" select="."></xsl:variable>
<xsl:copy-of select="." />
</message>
</td>
<td>
<button type="button" onclick="window.location.href=this.getAttribute('href')" href="{concat('abc=', substring-before('vari', '='))}" >Kill thread</button>
</td>
</tr>
</xsl:template>
这可能是一个微不足道的问题,但我只是在学习 xslt。