利用JS将一个input提交的值传递至另一个页面的input中
假设从页面A传递值到页面B:页面A的表单:<formaction="B.asp"method="post"><inputvalue="留下您的电话,让我们与您联系..."...
假设从 页面A 传递值到 页面B:
页面A的表单:
<form action="B.asp" method="post">
<input value="留下您的电话,让我们与您联系...">
<button type="submit">提交意向</button>
</form>
[注:简易的填写一下电话号码,点提交]
页面B的表单:
<form id="Workform" name="Workform" method="post" action="submit.asp" onSubmit="return Checksubmit();">
<table width="100%">
<tr>
<th>联系人:</th>
<td>
<input type="text" name="Who" id="Who" /></td>
</tr>
<tr>
<th>联系电话:</th>
<td>
<input type="text" name="Mobile" id="Mobile" /></td>
</tr>
<tr>
<th>联系Email:</th>
<td>
<input type="text" name="Email" id="Email" /></td>
</tr>
<tr>
<th>项目说明:</th>
<td>
<textarea name="Content" cols="50" rows="5" id="Content"></textarea>
</td>
</tr>
<tr>
<th> </th>
<td><button type="submit">开始提交</button></td>
</tr>
</table>
</form>
[注:将页面A的电话号码传递到本页面的电话号码项,补全信息提交至后台]
---------------
本人JS菜鸟,恳请高手帮帮忙,谢谢! 展开
页面A的表单:
<form action="B.asp" method="post">
<input value="留下您的电话,让我们与您联系...">
<button type="submit">提交意向</button>
</form>
[注:简易的填写一下电话号码,点提交]
页面B的表单:
<form id="Workform" name="Workform" method="post" action="submit.asp" onSubmit="return Checksubmit();">
<table width="100%">
<tr>
<th>联系人:</th>
<td>
<input type="text" name="Who" id="Who" /></td>
</tr>
<tr>
<th>联系电话:</th>
<td>
<input type="text" name="Mobile" id="Mobile" /></td>
</tr>
<tr>
<th>联系Email:</th>
<td>
<input type="text" name="Email" id="Email" /></td>
</tr>
<tr>
<th>项目说明:</th>
<td>
<textarea name="Content" cols="50" rows="5" id="Content"></textarea>
</td>
</tr>
<tr>
<th> </th>
<td><button type="submit">开始提交</button></td>
</tr>
</table>
</form>
[注:将页面A的电话号码传递到本页面的电话号码项,补全信息提交至后台]
---------------
本人JS菜鸟,恳请高手帮帮忙,谢谢! 展开
展开全部
A页面修改一下:
<input value="留下您的电话,让我们与您联系..." name="MoBile" />
B页面修改一下:
<tr>
<th>联系电话:</th>
<td>
<input type="text" name="Mobile" id="Mobile" value=<%=Request.Form("Mobile")%> /></td>
</tr>
用js干嘛呢?
<input value="留下您的电话,让我们与您联系..." name="MoBile" />
B页面修改一下:
<tr>
<th>联系电话:</th>
<td>
<input type="text" name="Mobile" id="Mobile" value=<%=Request.Form("Mobile")%> /></td>
</tr>
用js干嘛呢?
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询