jsp表单页面跳转问题action
<%@pagelanguage="java"import="java.util.*"pageEncoding="utf-8"%><%Stringpath=request....
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<base href="<%=basePath%>">
<title>JSP基本语法的应用</title>
<script language="javascript">
<!--
function myFunction()
{
//判断用户名是否为空
if(form1.text1.value==""){
alert("请输入用户名");
form1.text1.focus();
}
//判断密码是否为空
else if(form1.text2.value=="")
{
alert("请输入密码");
form1.text2.focus();
}
//判断两侧输入的密码是否相同
else if(form1.text2.value!=form1.text3.value)
{
alert("两次输入密码不同");
form1.text3.focus();
}
//规定密码不得少于6位
else if(form1.text2.value.length<6)
{
alert("密码太简单");
}
//本地验证后提交
else
{
form1.submit();
}
}
-->
</script>
</head>
<body bgcolor="#EEAA25">
<h1>欢迎你注册该网站</h1>
<%--使用include指令导入指定文件 --%>
<%@ include file="2-31.jsp" %>
<%--显示本地时间 --%>
你的注册时间为:<%= myDate.toLocaleString() %>
<!--定义一个注册提交表单 -->
<form id="form1" action="2-32.jsp name="form1"">
<table>
<tr>
<td>用户名</td>
<td><input type="text" name="text1"></td>
<td>用户名不能为空</td>
</tr>
<tr>
<td>密码</td>
<td><input type="password" name="text2"></td>
<td>密码不能少于6位</td>
</tr>
<tr>
<td>密码</td>
<td><input type="password" name="text3"></td>
<td>两次输入密码要一致</td>
</tr>
<tr>
<td>年龄</td>
<td><input type="text" name="text4"></td>
</tr>
<tr>
<td>Email</td>
<td><input type="text" name="text5"></td>
</tr>
<tr>
<!-- 单击注册按钮后并不马上提交,本地验证通过后进行提交 -->
<td><input type="button" value="注册" onclick="myFunction()"></td>
<td><input type="reset" value="取消"></td>
</tr>
</table>
</form>
</body>
</html>
为什么点注册后不能跳转到2-32.jsp呢,出现404错误 展开
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<base href="<%=basePath%>">
<title>JSP基本语法的应用</title>
<script language="javascript">
<!--
function myFunction()
{
//判断用户名是否为空
if(form1.text1.value==""){
alert("请输入用户名");
form1.text1.focus();
}
//判断密码是否为空
else if(form1.text2.value=="")
{
alert("请输入密码");
form1.text2.focus();
}
//判断两侧输入的密码是否相同
else if(form1.text2.value!=form1.text3.value)
{
alert("两次输入密码不同");
form1.text3.focus();
}
//规定密码不得少于6位
else if(form1.text2.value.length<6)
{
alert("密码太简单");
}
//本地验证后提交
else
{
form1.submit();
}
}
-->
</script>
</head>
<body bgcolor="#EEAA25">
<h1>欢迎你注册该网站</h1>
<%--使用include指令导入指定文件 --%>
<%@ include file="2-31.jsp" %>
<%--显示本地时间 --%>
你的注册时间为:<%= myDate.toLocaleString() %>
<!--定义一个注册提交表单 -->
<form id="form1" action="2-32.jsp name="form1"">
<table>
<tr>
<td>用户名</td>
<td><input type="text" name="text1"></td>
<td>用户名不能为空</td>
</tr>
<tr>
<td>密码</td>
<td><input type="password" name="text2"></td>
<td>密码不能少于6位</td>
</tr>
<tr>
<td>密码</td>
<td><input type="password" name="text3"></td>
<td>两次输入密码要一致</td>
</tr>
<tr>
<td>年龄</td>
<td><input type="text" name="text4"></td>
</tr>
<tr>
<td>Email</td>
<td><input type="text" name="text5"></td>
</tr>
<tr>
<!-- 单击注册按钮后并不马上提交,本地验证通过后进行提交 -->
<td><input type="button" value="注册" onclick="myFunction()"></td>
<td><input type="reset" value="取消"></td>
</tr>
</table>
</form>
</body>
</html>
为什么点注册后不能跳转到2-32.jsp呢,出现404错误 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询