javascript表单验证,返回的页面是下一个页面,我想返回到填写的那个页面(当前页面)该怎么弄呀?
<scriptlanguage="javascript">functioncheckTheForm(){if(document.form1.name.value=="")...
<script language="javascript">
function checkTheForm()
{
if(document.form1.name.value=="")
{
alert("姓名不能为空!");return false;
}
else if(document.form1.tel.value=="")
{
alert("电话不能为空!");
}
}
</script>
</head>
<body>
<form name="form1" method="post" action="exa5.asp" >
姓名 <input type="text" name="name"><br>
电话 <input type="text" name="tel"><br>
备注 <input type="text" name="message" value=""><br>
<input type="submit" name="Submit" value="提交" onclick="checkTheForm()">
<input type="reset" name="Submit2" value="重置">
在这里点击后返回的是下一个页面,我想要它返回填定的那个页面 该怎么弄呀 展开
function checkTheForm()
{
if(document.form1.name.value=="")
{
alert("姓名不能为空!");return false;
}
else if(document.form1.tel.value=="")
{
alert("电话不能为空!");
}
}
</script>
</head>
<body>
<form name="form1" method="post" action="exa5.asp" >
姓名 <input type="text" name="name"><br>
电话 <input type="text" name="tel"><br>
备注 <input type="text" name="message" value=""><br>
<input type="submit" name="Submit" value="提交" onclick="checkTheForm()">
<input type="reset" name="Submit2" value="重置">
在这里点击后返回的是下一个页面,我想要它返回填定的那个页面 该怎么弄呀 展开
2个回答
展开全部
<form name="form1" method="post" action="exa5.asp" onsubmit="return chkform()"> //最后这一句
<script language="javascript">
function chkform(){
if(document.getElementById("name").value==""){
alert("不能为空");
return false; //返回false的话,form将不会被提交,可以继续操作
}elseif(.....){
//如上对需要的元件进行检查
}else{
return true; //全通过后则返回true,form将被提交
}
}
</script>
<script language="javascript">
function chkform(){
if(document.getElementById("name").value==""){
alert("不能为空");
return false; //返回false的话,form将不会被提交,可以继续操作
}elseif(.....){
//如上对需要的元件进行检查
}else{
return true; //全通过后则返回true,form将被提交
}
}
</script>
展开全部
<form name="form1" method="post" action="exa5.asp" onsubmit="return checkTheForm()">
把
<input type="submit" name="Submit" value="提交" onclick="checkTheForm()">
里面的onclick去掉
另外checkTheForm函数里验证不通过时加一句return false;
不懂再问我
把
<input type="submit" name="Submit" value="提交" onclick="checkTheForm()">
里面的onclick去掉
另外checkTheForm函数里验证不通过时加一句return false;
不懂再问我
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询