下拉框

Posted 夏末、初秋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了下拉框相关的知识,希望对你有一定的参考价值。

性别

 <select class="form-control" name="sex" id="sex">
                                    <%--<option>性别...</option>--%>
                                    <option value="0" <c:if test="${talentInfo.sex == ‘0‘}">selected</c:if> >男</option>
                                    <option value="1" <c:if test="${talentInfo.sex == ‘1‘}">selected</c:if> >女</option>

                                </select>

遍历的下拉框

                  <select class="form-control" id="certificaType" name="certificaType">
                                    <%--<option>证件类型...</option>--%>
                                    <c:choose>
                                        <c:when test="${!empty talentInfo}">
                                            <c:forEach var="c" items="${certificaTypeList }">
                                                <option value="${c.dictCode }" <c:if test="${talentInfo.certificaType eq c.dictCode}">selected="selected"</c:if>>
                                                        ${c.dictName }</option>
                                            </c:forEach>
                                        </c:when>
                                        <c:otherwise>
                                            <c:forEach var="c" items="${certificaTypeList }">
                                                <option value="${c.dictCode }"> ${c.dictName }</option>
                                            </c:forEach>
                                        </c:otherwise>
                                    </c:choose>
                                </select>

 

以上是关于下拉框的主要内容,如果未能解决你的问题,请参考以下文章

用jquery设置下拉不可编辑,但是没起作用,求高手指点,急。。。

带下拉框的选项代码怎么写?

如何触发下拉框下拉事件

html下拉选择框;html下拉框

如何获取select下拉框的值

EasyUI点击下拉框选中人名后将薪酬数据回显到文本框中,薪酬文本框是用c:if循环出来的,代码见下方,