码迷,mamicode.com
首页 > 移动开发 > 详细

【js与jquery】电子邮箱、手机号、邮政编码的正则验证

时间:2016-04-24 15:52:18      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:

[php] view plain copy
 
 print?
  1. //验证邮政编码  
  2.     $("#postcode").blur(function(){  
  3.         //获取邮政编码  
  4.         var postcode=$("#postcode").val();  
  5.         if(is_postcode(postcode)){  
  6.             $("#postcode_info").html("");  
  7.         }else{  
  8.             $("#postcode_info").html("邮编格式不正确");  
  9.             return false;  
  10.         }  
  11.     });  
  12.       
  13.     //验证手机号码  
  14.     $("#mobile").blur(function(){  
  15.         //获取手机号,并去除左右两边空格  
  16.         var mobile=$.trim($("#mobile").val());  
  17.         if(is_mobile(mobile)){  
  18.             $("#mobile_info").html("");  
  19.         }else{  
  20.             $("#mobile_info").html("手机号格式不正确");  
  21.             return false;  
  22.         }  
  23.     });  
  24.       
  25.     //验证email  
  26.     $("#email").blur(function(){  
  27.         //获取email  
  28.         var email=$("#email").val();  
  29.         if(is_email(email)){  
  30.             $("#email_info").html("");  
  31.         }else{  
  32.             $("#email_info").html("电子邮件格式不正确");  
  33.             return false;  
  34.         }  
  35.     });  
  36. });  
  37.   
  38. //订单提交页-验证邮政编码  
  39. function is_postcode(postcode) {  
  40.     if ( postcode == "") {  
  41.         return false;  
  42.     } else {  
  43.         if (! /^[0-9][0-9]{5}$/.test(postcode)) {  
  44.             return false;  
  45.         }  
  46.     }  
  47.     return true;  
  48. }  
  49.   
  50. //订单提交页-验证手机号  
  51. function is_mobile(mobile) {  
  52.      if( mobile == "") {  
  53.       return false;  
  54.      } else {  
  55.        if( ! /^0{0,1}(13[0-9]|15[0-9]|18[0-9]|14[0-9])[0-9]{8}$/.test(mobile) ) {  
  56.         return false;  
  57.       }  
  58.       return true;  
  59.     }  
  60. }  
  61.   
  62. //订单提交页-验证email的合法性  
  63. function is_email(email) {  
  64.     if ( email == "") {  
  65.         return false;  
  66.     } else {  
  67.         if (! /^[\w\-\.]+@[\w\-\.]+(\.\w+)+$/.test(email)) {  
  68.             return false;  
  69.         }  
  70.     }  
  71.     return true;  
  72. }  

【js与jquery】电子邮箱、手机号、邮政编码的正则验证

标签:

原文地址:http://www.cnblogs.com/Alex80/p/5427136.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!