jsp模板标签,有if else的写法吗?网上查了说这样写
刚学java,确定下只能这样写吗?感觉好别扭!或者说有没有其他写法,如果只有这样的写法,那么
if(){ }elseif(){ }elseif(){ }
这样的情况怎么表示?
认证高级PHP讲师
means this
<c:choose> <c:when test="${1==2}"> 0001 </c:when> <c:otherwise> <c:choose> <c:when test="${1==3}"> 0002 </c:when> <c:otherwise> 0003 </c:otherwise> </c:choose> </c:otherwise> </c:choose>
Isn’t this pattern just three c:ifs
It doesn’t feel awkward if you use it too much. It only feels awkward if you use <% %> to insert a piece of java code
means this
Isn’t this pattern just three c:ifs
It doesn’t feel awkward if you use it too much. It only feels awkward if you use <% %> to insert a piece of java code