在下拉列表中预先选择默认值

时间:2015-10-19 18:03:10

标签: html html5 drop-down-menu thymeleaf selected

我在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标签?我在他们的网站上没有看到任何关于此的文件。

由于

1 个答案:

答案 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>