在基于行值(true / false)条件的jsp页面中,我试图更改行的颜色。这里当值为true时,行没有颜色,但是当为false时为黄色。我得到表的真或假值,但颜色没有改变
<c:choose>
<c:when test="${Cvalue == true}">
<tr>
<td class="firstColumn"><c:out
value="${Cvalue}" /></td>
</tr>
</c:when>
<c:otherwise>
<tr style="background-color: yellow;" >
<td class="firstColumn"><c:out
value="${Cvalue}" /></td>
</tr>
</c:otherwise>
</c:choose>