作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
从html传递到jsp-6ren"> 从html传递到jsp-在我的项目中,我在客户端手动接受行数,所以我想知道如何将表单中的 name[] 传递到 jsp 页面,以便我可以接收所有值在jsp页面中。这里的 modalDialog 会弹出一个新框,我们再次可以在-6ren">
在我的项目中,我在客户端手动接受行数,所以我想知道如何将表单中的 name[]
传递到 jsp 页面,以便我可以接收所有值在jsp页面中。这里的 modalDialog
会弹出一个新框,我们再次可以在其中输入现有主行的子详细信息。这意味着我们有一个主行(行数可以根据客户的需要手动设置)和每个主行的子行(即使这是根据客户的需要手动设置)。每个输入类型名称都是单独标识的。
<tr class="prototype">
<td><input type="text" name="id[]" value="0" class="id" /></td>
<td><input type="text" name="name[]" value="" /></td>
<td><input type="text" name="col4[]" value="" /></td>
<td><input type="text" name="col3[]" value="" /></td>
<td><button class="remove">Remove</button></td>
<td><a href="#openModal">Open Modal</a></td>
</tr>
</table>
<div id="openModal" class="modalDialog">
<div>
<a href="#close" title="Close" class="close">X</a>
<h2>Modal Box</h2>
<table class="dynatable">
<thead>
<tr>
<th>Id</th>
<th>Description</th>
<th>Debit </th>
<th>Credit</th>
<th><button class="add">Add</button></th>
</tr>
</thead>
<tbody>
<tr class="prototype">
<td><input type="text" name="id[]" value="0" class="id" /></td>
<td><input type="text" name="name[]" value="" /></td>
<td><input type="text" name="col4[]" value="" /></td>
<td><input type="text" name="col3[]" value="" /></td>
<td><button class="remove">Remove</button></td>
</tr>
</table>
<input type="submit" name="sendMessage" class="buttonM bLightBlue" value="Submit"/>
</div>
</div>
最佳答案
将此类数据传递到 JSP(或更确切地说,Java)后端时,不需要 []
表示法。
HTML
<input type="text" name="name" />
...
<input type="text" name="name" />
...
<input type="text" name="name" />
...
Java/JSP
String[] names = request.getParameterValues("name");
for (String name : names) {
...
}
关于java - 如何将这个 <input type ="text"name ="name[]"value =""/> 从html传递到jsp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18845589/
我是一名优秀的程序员,十分优秀!