Home  >  Article  >  Web Front-end  >  The most commonly used simple jQuery form validation method

The most commonly used simple jQuery form validation method

小云云
小云云Original
2018-01-10 14:57:541728browse

This article mainly shares with you the most commonly used jquery form verification example code. It is very good and has reference value. Friends who need it can refer to it. I hope it can help everyone.

Without further ado, I will post the code directly for you. The specific code is as follows:


<script type="text/javascript">
//<![CDATA[
$(function(){
    /*
    *思路大概是先为每一个required添加必填的标记,用each()方法来实现。
    *在each()方法中先是创建一个元素。然后通过append()方法将创建的元素加入到父元素后面。
    *这里面的this用的很精髓,每一次的this都对应着相应的input元素,然后获取相应的父元素。
    *然后为input元素添加失去焦点事件。然后进行用户名、邮件的验证。
    *这里用了一个判断is(),如果是用户名,做相应的处理,如果是邮件做相应的验证。
    *在jQuery框架中,也可以适当的穿插一写原汁原味的javascript代码。比如验证用户名中就有this.value,和this.value.length。对内容进行判断。
    *然后进行的是邮件的验证,貌似用到了正则表达式。
    *然后为input元素添加keyup事件与focus事件。就是在keyup时也要做一下验证,调用blur事件就行了。用triggerHandler()触发器,触发相应的事件。
    *最后提交表单时做统一验证
    *做好整体与细节的处理
    */
    //如果是必填的,则加红星标识.
    $("form :input.required").each(function(){
      var $required = $("<strong class=&#39;high&#39;> *</strong>"); //创建元素
      $(this).parent().append($required); //然后将它追加到文档中
    });
     //文本框失去焦点后
    $(&#39;form :input&#39;).blur(function(){
       var $parent = $(this).parent();
       $parent.find(".formtips").remove();
       //验证用户名
       if( $(this).is(&#39;#username&#39;) ){
          if( this.value=="" || this.value.length < 6 ){
            var errorMsg = &#39;请输入至少6位的用户名.&#39;;
            $parent.append(&#39;<span class="formtips onError">&#39;+errorMsg+&#39;</span>&#39;);
          }else{
            var okMsg = &#39;输入正确.&#39;;
            $parent.append(&#39;<span class="formtips onSuccess">&#39;+okMsg+&#39;</span>&#39;);
          }
       }
       //验证邮件
       if( $(this).is(&#39;#email&#39;) ){
        if( this.value=="" || ( this.value!="" && !/.+@.+\.[a-zA-Z]{2,4}$/.test(this.value) ) ){
           var errorMsg = &#39;请输入正确的E-Mail地址.&#39;;
           $parent.append(&#39;<span class="formtips onError">&#39;+errorMsg+&#39;</span>&#39;);
        }else{
           var okMsg = &#39;输入正确.&#39;;
           $parent.append(&#39;<span class="formtips onSuccess">&#39;+okMsg+&#39;</span>&#39;);
        }
       }
    }).keyup(function(){
      $(this).triggerHandler("blur");
    }).focus(function(){
       $(this).triggerHandler("blur");
    });//end blur
    //提交,最终验证。
     $(&#39;#send&#39;).click(function(){
        $("form :input.required").trigger(&#39;blur&#39;);
        var numError = $(&#39;form .onError&#39;).length;
        if(numError){
          return false;
        } 
        alert("注册成功,密码已发到你的邮箱,请查收.");
     });
    //重置
     $(&#39;#res&#39;).click(function(){
        $(".formtips").remove(); 
     });
})
//]]>
</script>

Related recommendations:

jquery form validation plug-in

jQuery form validation example code

jQuery form validation plug-in formValidator (improved version)_jquery

The above is the detailed content of The most commonly used simple jQuery form validation method. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn