Jquery Validation Plugin Verification phone number

Source: Internet
Author: User

Custom Phone number verification code http://www.2cto.com/kf/201505/402781.html

// 手机号码验证

jQuery.validator.addMethod( "isMobile" , function(value, element) {      var length = value.length;      var mobile = /^( 13 [ 0 - 9 ]{ 9 })|( 18 [ 0 - 9 ]{ 9 })|( 14 [ 0 - 9 ]{ 9 })|( 17 [ 0 - 9 ]{ 9 })|( 15 [ 0 - 9 ]{ 9 })$/;      return this .optional(element) || (length == 11 && mobile.test(value)); }, "请正确填写您的手机号码" );Validating Forms

$("#checkPhoneForm").validate({

     rules : {          phone : {              required : true ,              minlength : 11 ,              // 自定义方法:校验手机号在数据库中是否存在              // checkPhoneExist : true,              isMobile : true          },      },      messages : {          phone : {              required : "请输入手机号" ,              minlength : "确认手机不能小于11个字符" ,              isMobile : "请正确填写您的手机号码"          },      }, });

Jquery Validation Plugin Verification phone number

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.