我是靠谱客的博主 优雅麦片,最近开发中收集的这篇文章主要介绍el表达式的if else用法 随便记录下,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

el表达式要想使用if else 必须得用<c:choose></c:choose>标签

比如

<c:choose>

    <c:when test="${not empty getchecknum}">

    如果getchecknum对象不为空 如何如何

   </c:when>

   <c:otherwise>

     否则如何如何

  </c:otherwise>

</c:choose>

 

例子

<form id="searchForm" method="post">
    <div class="tab">      
           <h3>审批意见</h3>
        <p><textarea rows="" cols="" placeholder="请输入审批意见..." id="remarks" required name="remarks" class="tab-content"></textarea></p>
    </div>
        <c:choose>
            <c:when test="${not empty getchecknum}">
                <div style="margin-bottom: 20px;">
                    <label for="operator">经办人:</label> 
                    <input id="operator" name="operator" value="${getchecknum.operator }">
                    <label for="operatorPhone" style="margin-left: 40px;">经办人电话:</label>
                    <input id="operatorPhone" name="operatorPhone" value="${getchecknum.operator_phone }" class="number"> 
                    <label for="operatorQq" style="margin-left: 40px;">经办人QQ:</label>
                    <input id="operatorQq" name="operatorQq" value="${getchecknum.operator_qq }">
                </div>
            </c:when>
            <c:otherwise>
                <div style="margin-bottom: 20px;">
                    <label for="operator">经办人:</label> <input id="operator"
                        name="operator" value="${loginUser.name }"> <label
                        for="operatorPhone" style="margin-left: 40px;">经办人电话:</label> <input
                        id="operatorPhone" name="operatorPhone"
                        value="${loginUser.phone }"> <label
                        for="operatorQq" style="margin-left: 40px;">经办人QQ:</label> <input
                        id="operatorQq" name="operatorQq"
                        value="">
                </div>
            </c:otherwise>
        </c:choose>
    </form>

最后

以上就是优雅麦片为你收集整理的el表达式的if else用法 随便记录下的全部内容,希望文章能够帮你解决el表达式的if else用法 随便记录下所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部