thymeleaf种处理select,radio和文字回显的问题

Posted super-hu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thymeleaf种处理select,radio和文字回显的问题相关的知识,希望对你有一定的参考价值。

select根据后台集合显示下列列表

<select class="form-control" name="parentId" >
     <option ></option>
     <option th:each="a : ${menus}"  th:text="${a.name}" th:value="${a.parentId}">
</select>

radio根据后台的值选中对应的数据

<div class="form-group form-inline">
     <div class="radio"><label><input type="radio" th:field="${user.gender}" name="gender" th:value="0">男</label></div>
     <div class="radio"><label><input type="radio" th:field="${user.gender}"  name="gender" th:value="1">女</label></div>
</div>

文字回显:例如前端要根据返回的值显示 男或女,我这里用的th:switch,其他的例如th:if没成功。

<td th:switch="${user.gender}">
       <p th:case="0">男</p>
       <p th:case="1">女</p>
       <p th:case="*">中性</p>
</td>

 

以上是关于thymeleaf种处理select,radio和文字回显的问题的主要内容,如果未能解决你的问题,请参考以下文章

JQuery 之 获取 radio选中值,select选中值

JS控制radio和select

在同一个html页面中处理thymeleaf两种形式给出错误

layui 自动触发radio和select

javascript将类添加到基于radio select的类

jquery radio取值,checkbox取值,select取值,radio选中,checkbox选中,select选中,及其相关