以下是表单的样式,希望能将1.html的表单提交到2.html的表单中去,即点击OK按钮跳转到2.html,并且其中表单项已经对应显示了获取的数据。
<form name='form1' action='1.html'>
<table border='1'>
<input type='hidden' name='userID' value='1'>
<tr>
<td>姓名</td>
<td><input type='text' name='username' maxlength='10'></td>
</tr>
<tr>
<td>密码</td>
<td><input type='password' name='userpassword'></td>
</tr>
<td><input type='button' name='ok' value='ok' onclick="javascript:window.location='2.html‘</td>