常用正则表达
https://www.jianshu.com/p/a2164e370e29
https://www.cnblogs.com/zqifa/p/regex-1.html
var reg = /^[a-zA-Z]$/;// 这里是 正则表达式,大小写英文字母都可以
if (reg.test(userName.value) != true) {
alert("用户应为全英文");
}
https://www.jianshu.com/p/a2164e370e29
https://www.cnblogs.com/zqifa/p/regex-1.html
var reg = /^[a-zA-Z]$/;// 这里是 正则表达式,大小写英文字母都可以
if (reg.test(userName.value) != true) {
alert("用户应为全英文");
}