jQuery validate外掛程式實現ajax驗證重複的2種方法_jquery

來源:互聯網
上載者:User

本文執行個體講述了jQuery validate外掛程式實現ajax驗證重複的2種方法。分享給大家供大家參考,具體如下:

jquery validate 經過這種多年的改良,已經很完善了。它能滿足80%的驗證需要,如果validate內建的功能,不能滿足我們需求,它提供了addMethod來擴充功能。下面就舉個小例子來說明一下addMethod的用法。

完整demo執行個體代碼如下:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><title>jquery validate ajax check exist</title><head> <script type="text/javascript" src="jquery.min.js"></script> <script type="text/javascript" src="jquery.validate.min.js"></script> <script> $(document).ready(function(){  jQuery.validator.addMethod("phonecheck", function(value, element) {    string = value.match(/0(\d{2,2})-(\d{7,7})/ig);    if(string != null){      return true;    }else{      return false;    } }, "telphone number like 021-1234567");  jQuery.validator.addMethod("phonesame", function(value, element) {    var flag = 1;    $.ajax({      type:"POST",      url:'tel.php',      async:false,      data:{'tel':value},      success: function(msg){        if(msg == 'yes'){          flag = 0;        }      }    });    if(flag == 0){      return false;    }else{      return true;    } }, "sorry number have been exist"); $("#myform").validate({   errorPlacement: function(error, element) {    error.insertAfter(element);   },   rules:{       username:{         required:true,         remote:{        url:"tel.php",        type:"post",        dataType:"html",        data:{         username:function(){return $("#username").val();}        },         dataFilter: function(data, type) {      if (data == "yes")       return true;      else       return false;     }       }       },      telphone:{        required:true,        rangelength:[11,11],        phonecheck:true,        phonesame:true      }    },    messages:{      telphone:{        required:"Please enter your phone",        rangelength:"phone must be 11 numbers"      },      username:{        required:"Please enter your username",        remote:"the username have been exist"      }    },   debug:true   }) }); </script></head><body style="margin-left:500px;margin-top:100px;"><div style="font-size:24px;">021-1234567 or tank exist</div><br> <form id="myform" method="post"> <label>Your telphone</label> <input name="telphone" class="required" value="" /><br><br> <label>Your username</label> <input name="username" id="username" class="required" value="" /> <br/> <input type="submit" value="Submit"/></form></body></html>

在這裡推薦大家使用jquery validate,用熟了,很方便。

更多關於jQuery外掛程式相關內容感興趣的讀者可查看本站專題:《jQuery常用外掛程式及用法總結》

希望本文所述對大家jQuery程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.