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="重置">

在这里点击后返回的是下一个页面,我想要它返回填定的那个页面 该怎么弄呀
展开
 我来答
百度网友998a16a
2010-12-27 · TA获得超过202个赞
知道小有建树答主
回答量:279
采纳率:0%
帮助的人:326万
展开全部
<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>
miniappcy3tv95eaedrf
2010-12-27 · TA获得超过2363个赞
知道大有可为答主
回答量:1909
采纳率:92%
帮助的人:1097万
展开全部
<form name="form1" method="post" action="exa5.asp" onsubmit="return checkTheForm()">

<input type="submit" name="Submit" value="提交" onclick="checkTheForm()">
里面的onclick去掉
另外checkTheForm函数里验证不通过时加一句return false;
不懂再问我
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式