Illegal use of <when>-style tag without <choose> as its direct parent

时间:2015-05-21 15:35:27   收藏:0   阅读:1008

在jsp页面用报错Illegal use of <when>-style tag without <choose> as its direct parent
原因是:必须在里面使用。
具体用法如下:

<c:choose>
    <c:when test="${book.compareToday==‘0‘}">
    <h5>预约过期</h5>   
    </c:when>   
    <c:otherwise>
取消预约
</c:otherwise>
</c:choose>

原文:http://blog.csdn.net/zl544434558/article/details/45892055

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!