var Validator = { // 邮箱 isEmail : function(s) { var p = "^[-!#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+@[-!#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+\.[-!#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+$"; return this.test(s, p); }, // 手机号码 isMobile : function(s) { return this.test(s, /^(180|189|133|134|153|181)\d{8}$/); }, // 电话号码 isPhone : function(s) { return this.test(s, /^[0-9]{3,4}\-[0-9]{7,8}$/); }, // 邮编 isPostCode : function(s) { return this.test(s, /^[1-9][0-9]{5}$/); }, // 数字 isNumber : function(s, d) { return !isNaN(s.nodeType == 1 ? s.value : s) && (!d || !this.test(s, '^-?[0-9]*\\.[0-9]*$')); }, // 判断是否为空 isEmpty : function(s) { return !jQuery.isEmptyObject(s); }, // 正则匹配 test : function(s, p) { s = s.nodeType == 1 ? s.value : s; return new RegExp(p).test(s); } };
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。