常见的公共函数封装方法(密码强度手机号验证邮箱验证输入金额验证)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常见的公共函数封装方法(密码强度手机号验证邮箱验证输入金额验证)相关的知识,希望对你有一定的参考价值。

//密码复杂度公共函数封装(邮箱,手机号)
this.PasswordStrength = function(password) {
var rule = Auto517.config.passwordRule.rule;
var min = Auto517.config.passwordRule.min;
var max = Auto517.config.passwordRule.max;

if(rule == 0 && eval(‘/^[0-9]{‘ + min + ‘,‘ + max + ‘}$/.test(password)‘)) {
return true;
} else if(rule == 1 && eval(‘/^[a-zA-Z]{‘ + min + ‘,‘ + max + ‘}$/.test(password)‘)) {
return true;
} else if(rule == 2 && eval(‘/^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{‘ + min + ‘,‘ + max + ‘}$/.test(password)‘)) {
return true;
} else {
return false;
}
}

//手机号验证
this.PhoneNumberValidation = function(phonenum) {

if(/^1[3,4,5,7,8]\d{9}$/.test(phonenum)) {
return true;
} else {
return false;
}
}

//邮箱账号验证
this.MailboxValidate = function(email) {

if(/^[_\.0-9a-zA-Z-][email protected]([0-9a-z][0-9a-z-]+\.){1,4}[a-z]{2,3}$/.test(email)) {
return true;
} else {
return false;
}

}

//输入金额验证
this.EnterTheAmount = function(money) {
var rule = Auto517.config.moneyRule.rule;
var min = Auto517.config.moneyRule.min;

if(rule == 0 && /^[0-9]+(.[0-9]{1,2})?$/.test(money)) {
if(money >= min) {
return true;
} else {
return false;
}

} else if(rule == 1 && /^\+?[1-9][0-9]*$/.test(money)) {
if(money >= min) {
return true;
} else {
return false;
}

} else {
return false;
}
}

以上是关于常见的公共函数封装方法(密码强度手机号验证邮箱验证输入金额验证)的主要内容,如果未能解决你的问题,请参考以下文章

WEB安全新玩法 [4] 防护邮箱密码重置漏洞

TP怎么验证用户名、邮箱、手机号

ValidateUtil常用验证工具类,如手机密码邮箱等

Discuz常见小问题-如何设置QQ邮箱注册验证

drf多方式登录接口(手机号邮箱验证码)登录

MacOS添加QQ邮箱 显示无法验证账户名或密码