JSP中EL表达式:大于、小于、等于
JSP中的EL表达式:
使用案例:
<div class="head_unused">
<a id="unused" name="head_type" href="javascript:checkType(1)">
<c:choose>
<c:when test="${unusedCount eq 0}">
<font class="head_font active">未使用</font>
</c:when>
<c:when test="${unusedCount lt 100}">
<font class="head_font active">未使用(${unusedCount})</font>
</c:when>
<c:when test="${unusedCount ge 100}">
<font class="head_font active">未使用(99+)</font>
</c:when>
</c:choose>
</a>
<div class="head_line" id="unusedLine"></div>
</div>
java交流群:681223095
关注公众号,更多学习内容给予推送,争取每日更新
阅读更多
声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
- 上一篇:没有了
- 下一篇:没有了