thymeleaf动态输出下拉列表
下拉框:
设置默认值:th:selected="selected"
循环下拉框列表
<div class="layui-form-item">
<label class="layui-form-label">
<span class='x-red'>*</span>商品类型
</label>
<div class="layui-input-block">
thyme
<select th:name="goodsTypeName" th:id="goodsTypeName">
<option th:selected="selected" th:text="${dsTypeName}"
th:value="${dsTypeName}" th:title="原商品类型">
</option>
<option th:each="goodsTypeList:${allGoodsType}"
th:value="${GoodsTypeName()}"
th:text="${GoodsTypeName()}">
</option>
</select>
</div>
</div>
结果:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。