gpt4 book ai didi

java - struts 从 bean 生成表单元素

转载 作者:行者123 更新时间:2023-12-01 14:35:20 24 4
gpt4 key购买 nike

我在 JSP 页面中有一个 Struts 1.2 Bean 和一个 Bean 代码,如下所示

checkBox.jsp

<logic:iterate property="userList" id="userDet" name="userDetails">
<html:checkbox property="checked" name="userDet" indexed="true">
<bean:write property="userName" name="userDet"></bean:write>
</html:checkbox>
</logic:iterate>

上面的代码带来的输出如下

enter image description here

现在,当我提交表单时,我想使用复选框的 id 执行 Javascript 验证。

如何为 JSP 页面中通过 Bean 生成的复选框生成 id?是否可以动态生成 id 属性?

最佳答案

尝试使用“indexId”属性(页面范围 JSP bean 的名称,它将包含每次迭代时集合的当前索引。)的

<logic:iterate>

并在

的“styleId”属性中使用它
<html:checkbox>

像这样:

<logic:iterate property="userList" id="userDet" name="userDetails" indexId="checkBoxIndex">
<html:checkbox property="checked" name="userDet" indexed="true" styleId="checkBox<%= checkBoxIndex %>">
<bean:write property="userName" name="userDet"></bean:write>
</html:checkbox>
</logic:iterate>

关于java - struts 从 bean 生成表单元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16543482/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com