当前位置: 首页 > 工具软件 > JspTest > 使用案例 >

JSP中 <c:if test=““> 如何判断?

池庆
2023-12-01
  • 判断是否为空
     
    <c:if test="${empty str}">  str为空</c:if>
     
    <c:if test="${not empty str}">  str不为空</c:if>

     
  • 多条件逻辑判断
     
    <c:if test="${not empty str1 && not empty str2}">  str1不为空,str2不为空</c:if>

     
 类似资料: