用了很多网上找的,发现能用的太少,自己琢磨出可用的,留作备用
手机号:
var mobile_str = /^(((13[0-9]{1})|(15[0-9]{1})|(18[0-9]{1})|(17[0-9]{1}))+\d{8})$/;
if (!mobile_str.test(name)) {
//格式错误
} else {
//格式正确
}
邮箱:
var email_str = /[\w!#$%&'*+/=?^_`{|}~-]+(?:\.[\w!#$%&'*+/=?^_`{|}~-]+)*@(?:[\w](?:[\w-]*[\w])?\.)+[\w](?:[\w-]*[\w])?/;
if (!email_str.test(name)) {
//错误
} else {
//正确
}
时间: 2024-09-08 11:51:18