摘要: // 邮箱 export const isEmail = (s) => { return /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/.test(s) } // 手机号码 export const isMobile 阅读全文
posted @ 2024-10-30 15:04 席超 阅读(1) 评论(0) 推荐(0) 编辑