我搜索并尝试了各种解决方案(例如使用xsl:variable),但都没有。
这是我的情况。这有效,但我想将xsl_value-of作为参数传递给alert():
<a href="#" onclick="alert('text')"><xsl:value-of select="@naziv" /></a>
所以它会像
<a href="#" onclick="alert('{<xsl:value-of select="@naziv" />}')"><xsl:value-of select="@naziv" /></a>
答案 0 :(得分:3)
使用属性值模板,即
<a href="#" onclick="alert('{@naziv}');"><xsl:value-of select="@naziv"/></a>