我想将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提交。
答案 0 :(得分:0)
这是我的猜测:
<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>