html 5 style =" background-color:yellow;"或style =" background-color:#FF0000;"没有chnage表行的颜色

时间:2014-10-15 17:48:40

标签: css html5 jsp

在基于行值(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>

0 个答案:

没有答案