<div class="col-sm-9" th:with="type=${@dict.getType('xqd_jcy_lb')}"> <label th:each="dict : ${type}" class="check-box"> <input name="fenlei" id="fenlei" type="checkbox" th:value="${dict.dictValue}" th:text="${dict.dictLabel}"> </label> </div>中如何添加 th:checked全部选中
时间: 2023-07-06 20:04:17 浏览: 130
LL.zip_android Star-Di_dict_star-dict_字典
您可以通过在 input 标签中添加 th:checked 属性来实现全部选中的效果。代码示例如下:
```
<div class="col-sm-9" th:with="type=${@dict.getType('xqd_jcy_lb')}">
<label th:each="dict : ${type}" class="check-box">
<input name="fenlei" id="fenlei" type="checkbox" th:value="${dict.dictValue}" th:text="${dict.dictLabel}" th:checked="true">
</label>
</div>
```
在 input 标签中添加 th:checked="true" 属性后,所有的 checkbox 都将被默认选中。
阅读全文