如何在c中使用2个条件:if?

时间:2014-02-08 20:00:10

标签: jsp

我想在<c:if>中使用2个条件,但我不知道是否可能。

例如:

<c:if test="${(a.cost == b.cost) and (a.price == b.price)}" />
   Some code...
</c:if>

1 个答案:

答案 0 :(得分:0)

使用&amp;&amp;而不是and

<c:if test="${(a.cost == b.cost) && (a.price == b.price)}" />
   Some code...
</c:if>