在写JSP时用得比较多的就是JSTL的if...else...逻辑判断了。简单记录一下它的语法:
<c:choose> <c:when test="${empty parameterA}"> </c:when> <c:when test="${parameterB eq conditionStrA}"> </c:when> <c:when test="${parameterC ne conditionStrB}"> </c:when> <c:otherwise> </c:otherwise> </c:choose>
语法还是比较浅显易懂的!第一个判断是对parameterA是否为空的判断;第二个判断是对parameterB是否等于conditionStrA的判断;第三个判断是对parameterC是否不等于conditionStrB的判断;最后一个otherwise相当于switch里面的default,如果前面的判断都不成立,那么就默认执行这里面的!so easy!
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-11-06 20:53:24