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); } };
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦