如何提交隐藏表单 HTML JSP

发布于 2024-12-08 12:12:44 字数 643 浏览 0 评论 0原文

我想单独更新我的 html 表单中的一个字段。我知道我们不能在 html 中嵌入表单,那么我怎样才能做到这一点呢?

<form name="LabelForm" method='POST' action="lab/CA/ALL/createLabel.do">
                <input type="hidden" name="lab_no" value="<%=lab_no%>">
                <input type="hidden" name="aNum" value="<%=aNum%>">
                <input type="hidden" name="label" value="<%=label%>">
                <td><input type="submit" value="Create" /></td>
</form> 

在上面的代码中,提交按钮位于主表之外,该表是另一个名为 ackform 的表单的一部分。我想将提交按钮放在主表中(这样一切都整齐有序),但使其成为 LabelForm 的一部分。用户输入的值是“label”,我想用 LabelForm 提交它。

I want to update a field in my html form separately from the rest. I know we can't have embedded forms in html so how can I make this work?

<form name="LabelForm" method='POST' action="lab/CA/ALL/createLabel.do">
                <input type="hidden" name="lab_no" value="<%=lab_no%>">
                <input type="hidden" name="aNum" value="<%=aNum%>">
                <input type="hidden" name="label" value="<%=label%>">
                <td><input type="submit" value="Create" /></td>
</form> 

In the above code, the submit button is outside the main table which is part of another form called ackform. I want to put the submit button in the main table(so everything's neat and orderly) but make it part of LabelForm. The value that is entered by the user is "label" which I want to submit with the LabelForm.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

离去的眼神 2024-12-15 12:12:44

这是我的猜测:

<form name="TDISLabelForm" method='POST' action="lab/CA/ALL/createLabelTDIS.do">
   <input type="hidden" name="lab_no" value="<%=lab_no%>">
   <input type="hidden" name="accessionNum" value="<%=accessionNum%>">
   <input type="hidden" id="label" name="label" value="<%=label%>">
   <td><input type="submit" value="Create" /> <input type="button" onclick="form2.submit()" value="save in the hidden form">
</td>
</form>

<form name="form2" target="fr1" action="....your post code..." method="post">
<input type="hidden" id="label" name="label" value="<%=label%>">
</form>
<iframe style="height:1px;width:1px;border:none:" id="fr1"></iframe>

Here's my guess:

<form name="TDISLabelForm" method='POST' action="lab/CA/ALL/createLabelTDIS.do">
   <input type="hidden" name="lab_no" value="<%=lab_no%>">
   <input type="hidden" name="accessionNum" value="<%=accessionNum%>">
   <input type="hidden" id="label" name="label" value="<%=label%>">
   <td><input type="submit" value="Create" /> <input type="button" onclick="form2.submit()" value="save in the hidden form">
</td>
</form>

<form name="form2" target="fr1" action="....your post code..." method="post">
<input type="hidden" id="label" name="label" value="<%=label%>">
</form>
<iframe style="height:1px;width:1px;border:none:" id="fr1"></iframe>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文