1

您好我正在动态创建复选框,所以只想知道如何将请求属性传递给<html:checkbox />标签。

例如:request.setAttribute("counter_1", false);

如何在下面的代码片段中设置它。

<html:checkbox property=? />
4

2 回答 2

1

您应该ActionForm使用您的属性创建,例如

public class YourForm extends ActionForm {
private boolean counter;
// getters, setters
}

然后在 struts 配置中声明您的表单。在那之后:

<html:checkbox property="counter" />
于 2013-10-08T02:32:15.113 回答
1

<html:checkbox />是 struts 1.x 标签并使用 jstl 从请求属性中获取值,您可以使用下面的代码片段

<html:checkbox property="${counter_1}" />
于 2013-10-07T19:54:21.377 回答