thymeleaf select选中
时间: 2023-07-11 15:50:07 浏览: 116
select chosen
要在Thymeleaf中选中一个select选项,你可以使用`th:selected`属性。例如,如果你想要选中一个值为"2"的选项,你可以这样写:
```html
<select th:field="myField">
<option value="1">Option 1</option>
<option value="2" th:selected="${myField == '2'}">Option 2</option>
<option value="3">Option 3</option>
</select>
```
在这个例子中,`th:selected`属性被设置为一个表达式`${myField == '2'}`,如果`myField`的值等于"2",则该选项将被选中。你可以根据需要调整表达式来满足你的具体需求。
阅读全文