欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

前端笔记-thymeleaf获取及回显input标签type="radio"

程序员文章站 2023-12-27 09:14:39
...

如下演示:

前端笔记-thymeleaf获取及回显input标签type="radio"

回显:

前端笔记-thymeleaf获取及回显input标签type="radio"

前端代码如下:

<div class="form-group">
	<label>性别</label><br/>
	<div class="form-check form-check-inline">
		<input class="form-check-input" type="radio" name="sex" value="1"
			   th:checked="${people!=null}?${people.sex==1}" />
		<label class="form-check-label">男</label>
	</div>
	<div class="form-check form-check-inline">
		<input class="form-check-input" type="radio" name="sex" value="0"
			   th:checked="${people!=null}?${people.sex==0}" />
		<label class="form-check-label">女</label>
	</div>
</div>

如上可以知道这两个input name都是一样的 一个value是1,一个是0,他们的type都是radio,

回显通过checked来判断

后端获取只要获取sex的即可:

前端笔记-thymeleaf获取及回显input标签type="radio"

@RequestPara("sex") Integer sex。

这里直接使用Integer进行接收即可。

 

上一篇:

下一篇: