JSP页面跳转的问题,下面是一个简易聊天室的登录界面代码
发布网友
发布时间:2022-04-26 13:30
我来回答
共2个回答
热心网友
时间:2022-06-28 15:49
可以用js在本页面处理表单 处理完之后再跳转就行了,你现在这样是实现不了跳转的。
热心网友
时间:2022-06-28 15:49
<form action="Index.jsp"
//这里填index.jsp,点击进入后就会进入index。jsp,是不是这里填错了
name="form1" method="post" >
请输入昵称
<input name="user_name" type="text" size="10" maxlength="20" />
<input type="submit" name="submit" value="进入" />
</form>追问问题已解决,是if语句中user_name打错了的关系,response.sendRedirect("Login.jsp");实现页面跳转,表单提交是在本页面处理,所以actioin="Index.jsp"