下拉框的使用

Posted zorashuang

tags:

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

1.运用Thymeleaf显示下拉选的值和修改值

<select name="status" id="" style="width:180px">
<th:block th:each="status : ${statuss}">
<option th:value="${status}" th:text="${status}"
th:selected="${status == bug.status}"></option>
</th:block>
</select>


2. 使用thymeleaf的情况下,在表格中添加超链接
<td><a th:href="@{‘edit?id=‘+${li.id}}"><span th:text="${li.bugDesc}"></span></a></td>

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

创建下拉框的问题

C#如何设置combobox下拉框的内容

请教高手使用select下拉框的value问题

如何设置combobox 下拉框的内容

如何使用JS获取下拉列表框的显示值

angularJS 可编辑下拉选项框