Browse Source

固定电话取消区号-固定电话格式

user5 3 years atrás
parent
commit
79351f5818
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/webapp/webpage/include/head.jsp

+ 1 - 1
src/main/webapp/webpage/include/head.jsp

@@ -150,7 +150,7 @@
 
     jQuery.validator.addMethod("isTel", function(value, element) {
         var length = value.length;
-        var phone = /(^(\d{3,4}-)?\d{6,8}$)|(^(\d{3,4}-)?\d{6,8}(-\d{1,5})?$)|(\d{11})/;
+        var phone = /(^(\d{3,4}-)?\d{6,8}$)|(^(\d{3,4}-)?\d{6,8}(-\d{1,5})?$)|(\d{6,11})/;
         return this.optional(element) || (phone.test(value));
     }, "请填写正确的固定电话");