我有一个springboot应用程序。使用此模板,在提交时工作正常:
<div class="form-group required-control">
<label for="gre">GRE</label>
<input id="gre" type="checkbox" name="gre" th:checked="*{gre}" th:onclick="submit()" />
</div>
但是当我添加另一个复选框时,它总是考虑第一个复选框,不管我单击哪个复选框
<div class="form-group required-control">
<label for="gre">GRE</label>
<input id="gre" type="checkbox" name="gre" th:checked="*{gre}" th:onclick="submit()" />
<label for="gre2">GRE2</label>
<input id="gre2" type="checkbox" name="gre2" th:checked="*{gre2}" th:onclick="submit()" />
</div>
1条答案
按热度按时间zi8p0yeb1#
这里没有技术问题。我觉得你的手机有问题
submit()
函数,因为我创建了一个范式并尝试了同一个示例,所有选择组合都正常工作。例如,我分别添加了实体、控制器和html文件。