<form name="from1" method="post"  action="read_excel.php" >//外层
<input type="checkbox" name="select[]" value ="../upload2/price2.xls" >price2.xls:<br><br>//复选框
<table >
<form method="post">//内层
<tr><td>索引:</td>
<td>
<select name="a">//下拉菜单
  //省略  
</select></td>
  <td>请输入需要查询的值:<input name="name"type="text"></td><td><input name="name" type="submit" value="提 交"></td>
</tr>
</form>
</table><br>
<input name="提交" type="submit"  value="查看全表">//我点击这个按钮
</form>我用了form的嵌套 外层是个复选框
内层是下拉菜单和文本框
我点击外层的查看全表按钮在IE中无法跳转到read_excel.php,点了一点作用都没有
但是在linux下的火狐浏览器中就可以成功的跳转,有没有高手知道为什么啊,怎么样在IE中也可以跳转?