我有以下模板,如图所示..
<xsl:for-each select="/abc/def">
<xsl:if test=".Id='xxx' and ./Role='yyy' ">
<xsl:value-of select=" 'true'"/>
</xsl:if>
现在我想在 xsl:if 条件中放置一个 or 条件,这样假设条件 1 为真,那么结果也应该为真,或者如果条件 2 为真,那么结果也为真,现在请告知如何放置 or 条件我想出了这个解决方案,请告知它是否正确....
<xsl:if test=".Id='xxx' and ./Role='yyy' or test=".Id='ttt' and ./Role='ccc' ">