判断字符串为空
function trim(str) {
if(str == null || typeof str == "undefined"){
return "";
}
return str.replace(/(^\s*)|(\s*$)/g, "");
};
function isNull(object){
if(object == null || typeof object == "undefined"){
return true;
}
return false;
};
function isEmpty(str){
if(str == null || typeof str == "undefined" || str == ""){
return true;
}
return false;
};
function isBlank(str){
if(str == null || typeof str == "undefined" || str == "" || trim(str) == ""){
return true;
}
return false;
};