如何收集多个 JS 生成的输入字段的值?

发布于 2024-10-17 19:35:45 字数 173 浏览 1 评论 0原文

我有一个表单,其中有一个添加按钮。单击添加按钮时,会出现一个新文本框,用户可以在其中输入一些数据。用户可以任意次单击添加按钮。我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时间海 2024-10-24 19:35:45

您可以将文本框计数(每次单击“添加”按钮时增加一个整数)分配给表单中的隐藏输入字段,然后在发布表单时在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文