Skip to content

Commit

Permalink
修复手机号码校验器无法正确进行格式校验的问题;更新版本号为1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
CodePlayer committed Mar 22, 2017
1 parent ec67095 commit 1b29c39
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# jQuery Validator

当前版本: **1.3.3**
当前版本: **1.3.4**

jQuery Validator 是一个简单易用、功能强大的基于jQuery的表单验证框架。其设计目标如下:
* 【简单易用,轻松上手】:一般情况下,无需进行任何配置,内置的校验器和校验规则即可满足绝大多数中文环境下的常规表单验证需求,开箱即可使用!
Expand Down
4 changes: 2 additions & 2 deletions jquery-validator.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
fn = V.fn = V.prototype = {
// 版本号
version: "1.3.3",
version: "1.3.4",

constructor: V,

Expand Down Expand Up @@ -494,7 +494,7 @@
}
if(typeof rule != "object"){
var obj = {};
obj[rule] = rule;
obj[name] = rule;
rule = obj;
}
rule = this.extendRule(false, rule);
Expand Down
Loading

0 comments on commit 1b29c39

Please sign in to comment.