我有一个问题,我需要匹配 xsl 选择子句中的两个参数,有没有办法实现这个?
例如:xsl:when test= 我需要检查两个参数,所以我可以检查相同的价格但没有 ordertype 更低。
<xsl:choose>
<xsl:when test="price = 10" && "OrderType='P' ">
<td bgcolor="#ff00ff">
<xsl:value-of select="artist"/></td>
</xsl:when>
<xsl:when test="price = 10">
<td bgcolor="#cccccc">
<xsl:value-of select="artist"/></td>
</xsl:when>
<xsl:otherwise>
<td><xsl:value-of select="artist"/></td>
</xsl:otherwise>
</xsl:choose>