我的 HTML 表单只需要一点帮助,我有以下代码:
<form method="get" action="http://solutions-demo.cust-mta.com/automated/action.jsp">
<input type="hidden" name="action" value="updateRecipientNoMsg" />
<input type="hidden" name="redirect_err" value="/automated/action.jsp" />
<input type="hidden" name="redirect_ok" value="http://thankyou.html" />
<input type="hidden" id="gid" name="gid" value="200030053" />
<input type="hidden" id="pmobilenum" name="pmobilenum" value="123456789" />
<input type="hidden" id="uemail" name="uemail" value="[executor]" />
<input type="hidden" id="psw" name="psw" value="password" />
<input type="hidden" id="pemail" name="pemail" value="[emailBeingUpdated]" />
<table border="0">
<tr>
<td width="100"><div align="left"><font color="#ffffff" face="Arial, sans serif" style="font-size:12px;line-height:14px;">Email</font></div></td>
<td width="140"><div align="left"><font face="Arial, sans serif" color="#ffffff" style="font-size:12px;line-height:14px;">
<input type="text" name="pemail" />
</font></div></td>
</tr>
</table>
<table border="0">
<tr>
<td width="100"><div align="left"><font color="#ffffff" face="Arial, sans serif" style="font-size:12px;line-height:14px;">Mobile Number</font></div></td>
<td width="140"><div align="left"><font face="Arial, sans serif" color="#666666" style="font-size:12px;line-height:14px;">
<input type="text" name="pmobilenum" />
</font></div></td>
</tr>
</table>
<table>
<tr>
<td align="center">
<input type="submit" name="Submit" />
</td>
</tr>
</table>
</form>
一切正常,我正在联系 REST API 并推送一个操作,即使用电子邮件标识符更新用户手机号码。
目前我已经全部设置好了,所以当你点击它时,数字就会在系统中更新。
但是我希望用户能够输入他们的电子邮件和他们的号码,并且它是给他们的,因为目前为了测试,我已经将它设置为一个特定的电子邮件,所以你输入的任何细节总是会更新硬编码的。
我将如何使用 Javascript 将手机号码和电子邮件中的值放入此处:
<input type="hidden" id="pmobilenum" name="pmobilenum" value="INSERT TEXT FROM MOBILE NUMBER TEXT BOX" />
<input type="hidden" id="pemail" name="pmobilenum" value="INSERT TEXT FROM EMAIL TEXT BOX" />
应该使用 getElementByID 方法并将其变成 JSP 页面吗?
提前感谢您的建议!