声明:本站文章均为作者个人原创,图片均为实际截图。如有需要请收藏网站,禁止转载,谢谢配合!!!

1、vue/js验证邮箱

function (content){
    return /^\w+@[0-9a-z]+\.[a-z]+$/.test(content)
}

2、vue/js/jq验证邮箱

function (content){
    return /^[0-9]{11}$/ . test(content)
}