判断EMAIL格式脚本

function IsEmail(fData)
{
    if (IsEmpty(fData))
        return true
    if (fData.indexOf("@")==-1)
        return false
    var NameList=fData.split("@");
    if (NameList.length!=2)
        return false 
    if (NameList[0].length<1 )
        return false   
    if (NameList[1].indexOf(".")<=0)
        return false 
    if (fData.indexOf("@")>fData.indexOf(".")) 
return false
    if (fData.indexOf(".")==fData.length-1)
return false
    
    return true    
}

你可能感兴趣的:(Javascript,email,function,脚本)