javascript表单验证:怎样让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="重置">

不通过的时候 点击确定之后 返回的是下一个页面 我想要返回镇定的那个页面该怎样弄?
展开
 我来答
alanweb
2010-12-27 · TA获得超过328个赞
知道小有建树答主
回答量:170
采纳率:0%
帮助的人:232万
展开全部
<form name="form1" method="post" action="exa5.asp" >
改成:
<form name="form1" method="post" onsubmit="return checkTheForm()" action="exa5.asp" >

当form的onsubmit返回到的值为false时,表单将不会被提交。
你的JS代码里还需要做下小改动:
function checkTheForm()
{
if(document.form1.name.value=="")
{
alert("姓名不能为空!");return false;
}
if(document.form1.tel.value=="")//这里不需要else if 了
{
alert("电话不能为空!");return false;//这里也需要一个return false;
}
}
</script>
wellaab
2010-12-27 · TA获得超过268个赞
知道小有建树答主
回答量:212
采纳率:0%
帮助的人:189万
展开全部
把alert改成confirm
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式