Javascript:表单验证(验证空值/邮箱格式)

前端开发 作者: 2024-08-25 19:10:01
代码整理自w3school:http://www.w3school.com.cn效果图:示例代码:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <meta http-equiv="Content-Type" content="text/html; charset=utf⑻" /> <meta http-equiv="Content-Language" content="zh-cn" /> <title>Javascript 表单验证</title> <body> <h3>(1)验证必填项是不是有空值。</h3> <form action = "submitpage.html" onsubmit = "return validate_form(this)" method = "post"> Name:<input type = "text" name = "name" size = "20"> <input type = "submit" value = "Submit"> </form> <h3>(2)验证Email格式是不是正确。</h3> <form action = "submitpage.html" onsubmit = "return is_email_form(this)" method = "post"> Email:<input type = "text" name = "email" size = "20"> <input type = "submit" value = "OK"> </form> <script> //判断内容是不是为空 function validate_form(thisform){ with (thisform){ if (!validate_required(name,"Name must be filled out!")){ name.focus(); return false } } } function validate_required(field,alerttxt){ with (field){ if (value==null||value==""){ alert(alerttxt); return false }else { return true } } } //判断内容是不是符合email的格式 function is_email_form(thisform){ with(thisform){ if(!checkEmail(email,"Not a valid e-mail address!")){ email.focus(); return false; } } } function checkEmail(field,alertText){ with(field){ apos = value.indexOf("@"); dotPos = value.indexOf("."); if(apos<1 || dotPos-apos<2){ alert(alertText); return false; }else{ return true; } } } </script> </body> </html>


原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_68554.html