0

我有一个带有复选框输入的表单:

<form:input id="garder_${indice}" path="mesFormulaires[${indice}].garder"
    type="text" name="garder_${indice}" />

我想知道复选框是否在 Java 中被选中。怎么可能,使用带有名为“garder”的布尔值的 getter/setter。我希望 Java 方法可以实现,但我不知道它们。

4

1 回答 1

1

如果您使用的是 Spring MVC,我建议您使用form:checkbox标签并将其绑定到modelAttribute表单对象的属性。

public class YourModelAttribute{
    private boolan checkBoxProp;
    // other props

    // getter and setter for your props
}

然后在您的页面中:

<form:checkbox id="ckbId" path="checkBoxProp" />

请务必在modelAttribute您的表单中设置YourModelAttribute.

于 2012-07-16T12:51:50.357 回答