写一个标准的邮箱验证

function isEmail(email){
            var emailReg=/^([a-z0-9A-Z]+[-|_|.]?)*[a-z0-9A-Z]+@([a-z0-9A-Z]+[-|_|.]?)*[a-z0-9A-Z]+.[a-zA-Z]{2,3}$/;return emailReg.test(email);
        }
原文地址:https://www.cnblogs.com/dunken/p/4373874.html