js常用方法

判断字符串为空

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;  
}; 

你可能感兴趣的:(js常用方法)