如何收集多个 JS 生成的输入字段的值?
我有一个表单,其中有一个添加按钮。单击添加按钮时,会出现一个新文本框,用户可以在其中输入一些数据。用户可以任意次单击添加按钮。我正在使用 javascript 动态生成文本框。我可以维护生成的文本框数量的计数。在这些文本框中输入的所有值都必须使用 JSP 存储在数据库中。由于我不知道创建了多少个文本框,如何将这些值存储在数据库中?
I have a form in which I have an add button. When the add button is clicked a new text box appears where user can enter some data. The user can click add button any number of times. I am using javascript to dynamically generate textboxes. I can maintain a count of the number of textboxes generated. All the values entered in these text boxes have to be stored in database using JSP. How can I store those values in the database as I do not know how many textboxes were created?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将文本框计数(每次单击“添加”按钮时增加一个整数)分配给表单中的隐藏输入字段,然后在发布表单时在 JSP 中检索该字段的值。
如果为每个新文本框指定一个新名称,例如text{count},那么在JSP 中只需获取从text0 到text{maxCount} 的参数,其中maxCount 是隐藏字段的计数。
You could assign the text box count (increment an integer every time they click the Add button) to a hidden input field in the form, then retrieve the value of that field in the JSP when the form is posted.
If you give each new text box a new name, e.g. text{count}, then in your JSP just get the parameters from text0 to text{maxCount}, where maxCount is the count from the hidden field.