jsp同时满足两个条件<c:when test="${!empty webUser&&page

这样写语法对吗?测试没通过,那该怎么写呢?


慕无忌1623718
浏览 4552回答 3
3回答

慕妹3242003

表达式没有问题,可能是取值有问题。

蓝山帝景

<c:when test="${!empty webUser}"><c:if test="${page_name ne 'main'}">.....</c:if></c:when>可以将它分开写

ITMISS

好像c:when这些都是搭配一套一起用的例如:`<c:choose>&nbsp; &nbsp; &nbsp; &nbsp;<c:when test=条件>内容</c:when>&nbsp; &nbsp; &nbsp; <c:when test=条件>内容</c:when>&nbsp; &nbsp; &nbsp;<c:otherwise>内容</c:otherwise></c:choose>`就是if...else if...else if ...else如果只是一个判断就直接用<c:if test=条件>内容</c:if>按需使用
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java