美文网首页
js 关联数组获取数组长度

js 关联数组获取数组长度

作者: karl_song | 来源:发表于2016-07-20 17:14 被阅读187次

    //关联数组长度

    function getObjLength(obj){    
            var count=0;       
            for(var name in obj){       
                if(typeof obj[name] == "object"){               
                    count+=getObjLength(obj[name]);         
                 }else{  
                    count++;  
                 }  
            }    
            return count;    
        }  
    

    相关文章

      网友评论

          本文标题:js 关联数组获取数组长度

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