请教JS检验表单的代码拜托各位了 3Q
我的代码是这样,帮我看看有什么问题,不知为什么没有反应<htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-...
我的代码是这样,帮我看看有什么问题,不知为什么没有反应 <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <script language="JavaScript" > function Checkform() { if (document.theform.user.value == "") { alert("请输入你的姓名"); theform.user.focus(); return false; } if (document.theform.age.value == "") { alert("请输入你的年龄"); theform.age.focus(); return false; } if (document.theform.address.value == "") { alert("请输入你的地址"); theform.address.focus(); return false; } if (document.theform.mail.value.indexOf("@") == -1 ||document.theform.mail.value.indexOf(".") == -1 || document.theform.mail.value == "") { alert("你未正确输入E-mail地址"); theform.mail.focus(); return false; } } </script> </head> <body> <form ACTION="message.asp" METHOD="POST" enctype="application/x-www-form-urlencoded" name="theform" id="theform" onsubmit="return Cheakform()" > 下面省略
展开
2个回答
展开全部
<html > <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <script language="JavaScript" > function Checkform() { alert("你好"); if (document.theform.user.value == "") { alert("请输入你的姓名"); return false; } if (document.theform.age.value == "") { alert("请输入你的年龄"); return false; } if (document.theform.address.value == "") { alert("请输入你的地址"); return false; } if (document.theform.mail.value.indexOf("@") == -1 ||document.theform.mail.value.indexOf(".") == -1 || document.theform.mail.value == "") { alert("你未正确输入E-mail地址"); return false; } return true; } </script> </head> <body> <form ACTION="message.html" METHOD="POST" name="theform" id="theform" onsubmit="return Checkform()" > <input type="text" name="user"> <input type="text" name="age"> <input type="text" name="address"> <input type="text" name="mail"> <input type="submit" value="ok" > </form> </body></html> 你看看吧,我只是重新复制了一下调用的方法,就是onsubmit的地方 在if (document.theform.mail.value.indexOf("@") == -1 ||document.theform.mail.value.indexOf(".") == -1 || document.theform.mail.value == "") { alert("你未正确输入E-mail地址"); theform.mail.focus(); return false; } return true;//添了个true;就对了,你试试吧! } </script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询