我想在<c:if>
中使用2个条件,但我不知道是否可能。
例如:
<c:if test="${(a.cost == b.cost) and (a.price == b.price)}" />
Some code...
</c:if>
答案 0 :(得分:0)
使用&amp;&amp;而不是and
<c:if test="${(a.cost == b.cost) && (a.price == b.price)}" />
Some code...
</c:if>