常用正则表达

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("用户应为全英文");
}

posted @ 2019-08-29 09:31  ThisCall  阅读(93)  评论(0编辑  收藏  举报