xsl choose 句の 2 つのパラメータを一致させる必要があるという問題があります。これを達成する方法はありますか?
例: xsl:when test= 2 つのパラメーターをチェックする必要があるため、同じ価格をチェックできますが、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>