我是xsl的新手,我想调用一个函数podInfo(< agr>),参数是我在xsl中捕获的xml doc的一些属性值。但函数调用不正确任何人都可以建议我是对的。下面是摘录
<xsl:variable name="xx" select="@name"/>
<td>
<a href="#" onclick="podInfo(<xsl:value-of select="$xx"/>)">
<xsl:value-of select="@name"/>
</a>
</td>
答案 0 :(得分:0)
您需要使用<xsl:attribute>
元素,这样您才能轻松地撰写onclick
,即使用<xsl:value-of>
等Here is the XSLT2 spec等元素来构建此元素。
这将是:
<a href="#">
<!-- xsl:attribute means that instead of putting it's result
into output document, they will be placed as an attributes
value of parent element (<a> in this case) -->
<xsl:attribute name="onclick">
podInfo(<xsl:value-of select="$xx"/>)
</xsl:attribute>
<xsl:value-of select="@name"/>
</a>
有关其他示例,请参阅this answer。