我有输入字段和一些表单,我想将输入字段中的信息添加到以表单形式发送的数据中。如果输入字段位于表单之外,是否有可能?
所以问题是:是否可以从第一种形式获取数据并将其附加到第二种形式的数据中?
有我的表格:
<form name="phoneForm">
Mobile phone: <input type="text" name="phone"><br>
</form>
<form name="submitForm" method="POST" action="buy">
<a href="javascript:;" onclick="parentNode.submit();"><%=j%></a>
<input type="hidden" name="<%=Consts.HTTP_REQUEST_HALL%>" value="<%=hallId%>"/>
<input type="hidden" name="<%=Consts.HTTP_REQUEST_SEANCE%>" value="<%=seanceId%>"/>
<input type="hidden" name="<%=Consts.HTTP_REQUEST_ROW%>" value="<%=i%>"/>
<input type="hidden" name="<%=Consts.HTTP_REQUEST_PLACE%>" value="<%=j%>"/>
</form>