隐藏百里香形式的下拉列表

时间:2018-05-29 11:27:17

标签: html spring-mvc spring-boot thymeleaf

我有一个带有默认值的拖曳下拉列表的百里香形式。我把它隐藏在表格中。

第一个是:

<div class="form-group">
                <label class="col-md-4 control-label" for="estado"></label>
                <div class="col-md-4">
                    <select id="estado" name="estado" class="form-control">
                        <option th:each="estado : ${estado}" th:value="${estado.idEstado}"
                            th:attr="choiceid=${estado.idEstado}" th:text="${estado.estado}"></option>
                    </select>
                </div>
            </div>

第二个是:

<div class="form-group">
                <label class="col-md-4 control-label" for="tipoDeDeclaracion"></label>
                <div class="col-md-4">

                    <select th:field="*{tieneErrores}" class="form-control"
                        name="project_status">
                        <option value="N">NO (por defecto)</option>
                    </select>
                </div>
            </div>

感谢。

1 个答案:

答案 0 :(得分:0)

感谢您通过添加style =“display:none;

来解决此问题
<div class="form-group" style="display: none;">
                <label class="col-md-4 control-label" for="tipoDeDeclaracion"></label>
                <div class="col-md-4">

                    <select th:field="*{tieneErrores}" class="form-control"
                        name="project_status">
                        <option value="N">NO (por defecto)</option>
                    </select>
                </div>
            </div>