如何在html中编写多个ifs

时间:2014-05-11 08:14:51

标签: html spring jsp

如果有结果,我必须显示通知。 就像,如果有新消息,我需要显示消息。我有三个场景。 我正在使用

    <c:choose>
            <c:when test="${formObj.msgNo != 0}">

它运行正常,但问题是如果满足一个条件,则跳过其他条件,因为它是if else阻塞。 我希望有多个ifs。我可以再次使用多个

<c:choose>

但主要问题是我需要在页面上显示&#34;没有新的通知&#34;如果没有满足3个条件。请指导如何继续。

1 个答案:

答案 0 :(得分:1)

你可以有多个

<c:if>

如果没有通知,您可以使用

<c:choose>
   <c:when test="${formObj.msgCount == 0}">
     "Here comes your no notification message"
   </c:when>
   <c:otherwise>
     Multiple <c:if></c:if> conditions
   </c:otherwise>
</c:choose>

它应该处理你的用例。