这样写语法对吗?测试没通过,那该怎么写呢?
3 回答
蓝山帝景
TA贡献1843条经验 获得超7个赞
<c:when test="${!empty webUser}"><c:if test="${page_name ne 'main'}">.....</c:if></c:when>
可以将它分开写
ITMISS
TA贡献1871条经验 获得超8个赞
好像c:when这些都是搭配一套一起用的
例如:
`<c:choose>
<c:when test=条件>内容</c:when>
<c:when test=条件>内容</c:when>
<c:otherwise>内容</c:otherwise>
</c:choose>`
就是if...else if...else if ...else
如果只是一个判断就直接用<c:if test=条件>内容</c:if>
按需使用
添加回答
举报
0/150
提交
取消