前台基础的校验总结

    在我们的B/S开发中,有很多很基础的校验需要做,来提高我们系统的友好性。

    空字符串的校验:

    数字的校验、首字母校验    正则表达式

function isNotNull (obj,str,allowNull){  
  if (isNull(obj) && !allowNull){  
 // document.getElementById('doing').style.visibility='hidden';    
    alert(str+" 不能为空!");  
    obj.focus();  
    return false;  
  }  
  else return true;  
}  

    对电子邮箱的校验:

function isMail(obj,str,allowNull) {  
    var pattern = /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/;  
    if(!isNotNull(obj,str,allowNull)) return false;  
    if(!(pattern.test(obj.value))&&!isNull(obj)){  
        //document.getElementById('doing').style.visibility='hidden';   
        alert(str+" 不是合法电子邮件格式!");  
        obj.focus();  
        return false;  
    }  
    else return true;  
}  

    对数字的判断

function isNumber(obj,str,allowNull) {  
    var pattern =/^[-,+]{0,1}[0-9]{0,}[.]{0,1}[0-9]{0,}$/;  
    if(!isNotNull(obj,str,allowNull)) return false;  
    if(!(pattern.test(obj.value))&&!isNull(obj)){  
    //  document.getElementById('doing').style.visibility='hidden';    
        alert(str+" 不是数字格式!");  
        obj.focus();  
        return false;  
    }  
    else return true;  
}  
  
function isInteger(obj,str,allowNull) {  
    var pattern = /^-*\d+$/;  
    if(!isNotNull(obj,str,allowNull)) return false;  
    if(!(pattern.test(obj.value))&&!isNull(obj)){  
    //  document.getElementById('doing').style.visibility='hidden';    
        alert(str+" 不是整数格式!");  
        obj.focus();  
        return false;  
    }  
    else return true;  
}  
  

    友好的提示可以增强用户的体验度,提高用户粘度,看似简单的细微之处,对于我们的系统将会起到很大的作用!

你可能感兴趣的:(前台基础的校验总结)