如何在jsp中使用for循环来循环复选框?

时间:2018-12-14 08:29:08

标签: java jsp

我正在尝试使用for循环循环复选框。我写了event.text来遍历复选框。根据数据库中的数据字段显示复选框。但是,当我尝试检查其中任何一个复选框时,只有一个复选框被选中。我在这里做什么错了?

复选框

c:forEach

为什么只选中一个复选框?

1 个答案:

答案 0 :(得分:1)

添加后我的问题解决了

<c:forEach items="${brandlist}" var="brand" begin="0" end="5"
varStatus="loop">
<div class="custom-control custom-checkbox">
    <input type="checkbox" class="custom-control-input"
        id="${brand.brand}" name="${brand.brand}"> <label
        class="custom-control-label" for="${brand.brand}">${brand.brand}</label>
</div>