美文网首页
js常用方法

js常用方法

作者: 你大爷终归是你大爷 | 来源:发表于2018-01-09 22:35 被阅读0次

    判断字符串为空

    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常用方法

          本文链接:https://www.haomeiwen.com/subject/oufnnxtx.html