为什么我点击提交时,javascript的程序不起作用的,哪里出错啦!程序如下!
<%@pagelanguage="java"import="java.util.*"pageEncoding="GB18030"%><%Stringpath=reques...
<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
<%
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>
<base href="<%=basePath%>">
<title>My JSP 'userzhuce.jsp' starting page</title>
<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">
-->
<script type="text/javascript">
<!--
function checkform();{
//判断用户是否为空,是否有非法字符“/”或者“.”
if(document.form.ID.value==""||!(document.form.ID.value).indexof("/")||!(document.form.ID.value).indexof(".")){
alert("用户名为空或者有‘/’,‘.’这样的非法字符");
document.form.ID.focus();
}
//判断密码是否为空或者小于6位
else if(document.form.password.value==""||(document.form.password.value).length<6){
alert("密码为空或者小于6位");
document.form.password.focus();
}
//判断两次密码输入是否一致
else if(document.form.rpassword.value==""||(document.form.rpassword.value)!=(document.form.password.value)){
alert("两次输入密码不一致或者确认密码为空");
document.form.rpassword.focus();
}
//判断邮件是否为空
else if(document.form.Email.value==""){
alert("为了给您更好的服务,请填写您的邮件");
document.form.Email.focus();
}
else {
document.form.submit();
}
}
//-->
</script>
</head>
<body>
<form action="zhuceok" method="post" name="form">
<table width="45%" border="0">
<tr>
<td width="35%">用户名:</td>
<td><input type="text" name="ID" size="20"></td>
</tr>
<tr>
<td width="35%">密码:</td>
<td><input type="password" name="password" size="20"></td>
</tr>
<tr>
<td width="35%">确认密码:</td>
<td><input type="password" name="rpassword" size="20"></td>
</tr>
<tr>
<td width="35%">邮件:</td>
<td><input type="text" name="Email" size="20"></td>
</tr>
<tr>
<td width="15%" align="right">
<input type="submit" name="submit" value="确认" onclick="checkform()"></td>
</tr>
</table>
</form>
</body>
</html> 展开
<%
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>
<base href="<%=basePath%>">
<title>My JSP 'userzhuce.jsp' starting page</title>
<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">
-->
<script type="text/javascript">
<!--
function checkform();{
//判断用户是否为空,是否有非法字符“/”或者“.”
if(document.form.ID.value==""||!(document.form.ID.value).indexof("/")||!(document.form.ID.value).indexof(".")){
alert("用户名为空或者有‘/’,‘.’这样的非法字符");
document.form.ID.focus();
}
//判断密码是否为空或者小于6位
else if(document.form.password.value==""||(document.form.password.value).length<6){
alert("密码为空或者小于6位");
document.form.password.focus();
}
//判断两次密码输入是否一致
else if(document.form.rpassword.value==""||(document.form.rpassword.value)!=(document.form.password.value)){
alert("两次输入密码不一致或者确认密码为空");
document.form.rpassword.focus();
}
//判断邮件是否为空
else if(document.form.Email.value==""){
alert("为了给您更好的服务,请填写您的邮件");
document.form.Email.focus();
}
else {
document.form.submit();
}
}
//-->
</script>
</head>
<body>
<form action="zhuceok" method="post" name="form">
<table width="45%" border="0">
<tr>
<td width="35%">用户名:</td>
<td><input type="text" name="ID" size="20"></td>
</tr>
<tr>
<td width="35%">密码:</td>
<td><input type="password" name="password" size="20"></td>
</tr>
<tr>
<td width="35%">确认密码:</td>
<td><input type="password" name="rpassword" size="20"></td>
</tr>
<tr>
<td width="35%">邮件:</td>
<td><input type="text" name="Email" size="20"></td>
</tr>
<tr>
<td width="15%" align="right">
<input type="submit" name="submit" value="确认" onclick="checkform()"></td>
</tr>
</table>
</form>
</body>
</html> 展开
3个回答
展开全部
<script type="text/javascript">
<!--
function checkform(){
//判断用户是否为空,是否有非法字符“/”或者“.”
if(document.form.ID.value=="" || (document.form.ID.value).indexOf("/")!=-1 || (document.form.ID.value).indexOf(".")!=-1){
alert("用户名为空或者有‘/’,‘.’这样的非法字符");
document.form.ID.focus();
return false;
}
//判断密码是否为空或者小于6位
else if(document.form.password.value==""||(document.form.password.value).length<6){
alert("密码为空或者小于6位");
document.form.password.focus();
return false;
}
//判断两次密码输入是否一致
else if(document.form.rpassword.value==""||(document.form.rpassword.value)!=(document.form.password.value)){
alert("两次输入密码不一致或者确认密码为空");
document.form.rpassword.focus();
return false;
}
//判断邮件是否为空
else if(document.form.Email.value==""){
alert("为了给您更好的服务,请填写您的邮件");
document.form.Email.focus();
return false;
}
}
//-->
</script>
<form action="zhuceok" method="post" name="form">
<table width="45%" border="0">
<tr>
<td width="35%">用户名:</td>
<td><input type="text" name="ID" size="20"></td>
</tr>
<tr>
<td width="35%">密码:</td>
<td><input type="password" name="password" size="20"></td>
</tr>
<tr>
<td width="35%">确认密码:</td>
<td><input type="password" name="rpassword" size="20"></td>
</tr>
<tr>
<td width="35%">邮件:</td>
<td><input type="text" name="Email" size="20"></td>
</tr>
<tr>
<td width="15%" align="right">
<input type="submit" name="submit" value="确认" onclick="return checkform();"></td>
</tr>
</table>
</form>
<!--
function checkform(){
//判断用户是否为空,是否有非法字符“/”或者“.”
if(document.form.ID.value=="" || (document.form.ID.value).indexOf("/")!=-1 || (document.form.ID.value).indexOf(".")!=-1){
alert("用户名为空或者有‘/’,‘.’这样的非法字符");
document.form.ID.focus();
return false;
}
//判断密码是否为空或者小于6位
else if(document.form.password.value==""||(document.form.password.value).length<6){
alert("密码为空或者小于6位");
document.form.password.focus();
return false;
}
//判断两次密码输入是否一致
else if(document.form.rpassword.value==""||(document.form.rpassword.value)!=(document.form.password.value)){
alert("两次输入密码不一致或者确认密码为空");
document.form.rpassword.focus();
return false;
}
//判断邮件是否为空
else if(document.form.Email.value==""){
alert("为了给您更好的服务,请填写您的邮件");
document.form.Email.focus();
return false;
}
}
//-->
</script>
<form action="zhuceok" method="post" name="form">
<table width="45%" border="0">
<tr>
<td width="35%">用户名:</td>
<td><input type="text" name="ID" size="20"></td>
</tr>
<tr>
<td width="35%">密码:</td>
<td><input type="password" name="password" size="20"></td>
</tr>
<tr>
<td width="35%">确认密码:</td>
<td><input type="password" name="rpassword" size="20"></td>
</tr>
<tr>
<td width="35%">邮件:</td>
<td><input type="text" name="Email" size="20"></td>
</tr>
<tr>
<td width="15%" align="right">
<input type="submit" name="submit" value="确认" onclick="return checkform();"></td>
</tr>
</table>
</form>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
function checkform();{ // 把这里的分号去掉
还有 获取对象 最好不要用 document.from.XXX 用document.getElementById("对象ID")
去掉最后的else{ // code} 中的代码
在每个表示错误的 if 判断最后一行加上 return !1;
function $(id){return document.getElementById(id);}
if( $("id").value.indexof("/") != -1 ) { // indexOf() 返回-1表示不存在
alert("用户名为空或者有‘/’,‘.’这样的非法字符");
document.form.ID.focus();
return !1;
}
HTML 中 最好给每个元素添加一个 ID属性><input type="password" ID="password" name="password" size="20">
还有 获取对象 最好不要用 document.from.XXX 用document.getElementById("对象ID")
去掉最后的else{ // code} 中的代码
在每个表示错误的 if 判断最后一行加上 return !1;
function $(id){return document.getElementById(id);}
if( $("id").value.indexof("/") != -1 ) { // indexOf() 返回-1表示不存在
alert("用户名为空或者有‘/’,‘.’这样的非法字符");
document.form.ID.focus();
return !1;
}
HTML 中 最好给每个元素添加一个 ID属性><input type="password" ID="password" name="password" size="20">
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
修改之处:
1.submit改为button
2.后面改为onclick="return checkform()"
3.JS方法里面
在document.form.ID.focus();
后面加上return false;
下面几个同样加上
1.submit改为button
2.后面改为onclick="return checkform()"
3.JS方法里面
在document.form.ID.focus();
后面加上return false;
下面几个同样加上
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询