为什么我用form里嵌套table就提交失败?
开始自己打了一个登陆表单,用的是下面的代码,然后点登陆不管密码正确错误都会跳转到登陆失败那个页面,找了好久才找到原因,原来是我form里嵌套table表单的原因,那为啥会这样呢?
<form action="dologin.jsp" name="" method="post"><label>用户登录</label><table><tr><td>用户名</td><td><input type="text" value=""></td></tr><tr><td>密码</td><td><input type="password" value="" name="password"></td></tr><tr><td><input type="submit" value="登陆"></td></tr></table></form>