gpt4 book ai didi

java - Java Struts 中 HTML 下拉菜单的动态数量

转载 作者:太空宇宙 更新时间:2023-11-04 08:01:55 25 4
gpt4 key购买 nike

我有这个表单,我想在其中创建动态数量的下拉列表。我有一个未分类的应用程序列表,我希望每个应用程序都有自己的下拉列表来选择其类别。我不确定如何将唯一数据传递到服务器。每个下拉选项都是相同的。

<html:form action="/CategorizeApps.do">
<h3>Uncategorized</h3>
<br/>
Categorize each application using the dropdown menu then click categorize.<br/>
<table class="list">
<thead>
<tr class="controls">
<td><input type="submit" name="btnAction" value="Categorize"/></td>
</tr>
<tr class="fields">
<td>ID</td>
<td>Name</td>
<td></td>
</tr>
</thead>
<tbody>
<logic:iterate id="uncat" name="appsUncat" scope="session">
<tr class="hlist">
<td><bean:write property="id" name="uncat" scope="page"/></td>
<td><bean:write property="name" name="uncat" scope="page"/></td>
<td>
<select id="category" name="category">
<logic:iterate id="categories" name="Categories" scope="session">
<option value="<bean:write name="categories" property="id" scope="page"/>"><bean:write name="categories" property="name" scope="page"/></option>
</logic:iterate>
</select>
</td>
</tr>
</logic:iterate>
</tbody>
</table>
</html:form>

最佳答案

一旦您选择了值,它将传递到表单(类别)并将其设置在类别中。它是由struts 自己完成的。但您应该对值和选项使用相同的名称或 ID。或者将下拉值设置为选择值。

关于java - Java Struts 中 HTML 下拉菜单的动态数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12730740/

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