我在Thymeleaf中创建了一个下拉列表,它正在运行。但是,我还希望预先选择下拉列表中的选项。
这是我到目前为止的代码:
<select id="selectOptions" th:field="*{selectedOption}">
<option th:each="option : ${searchOptions}"
th:value="${option.getOption()}"
th:text="${option.getOptionName()}">Options</option>
</select>
我如何使用th:selected
标签?我在他们的网站上没有看到任何关于此的文件。
由于
答案 0 :(得分:0)
<select id="selectOptions" th:field="*{selectedOption}">
<option th:each="option : ${searchOptions}"
th:value="${option.getOption()}"
th:selected="${option.someOption()}" // <- use the th:selected
th:text="${option.getOptionName()}">Options</option>
</select>