邮箱验证

String.prototype.isMail = function()
{
var reg = /^(\w-.)+@(\w-?)+(.\w{2,})+$/;
return reg.test(this);
}

你可能感兴趣的:(邮箱验证)