神男说:复制粘贴一把梭=》前端几个小工具方法
1.邮箱
export const isEmail = (s) => {
return /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/.test(s)
}
2.手机号码
export const isMobile = (s) => {
return /^1[0-9]{10}$/.test(s)
}
3.电话号码
export const isPhone = (s) => {
re
原创
2020-05-28 10:49:27 ·
487 阅读 ·
0 评论