function getJsonObjLength(jsonObj){
var Length=0;
for(var item in jsonObj){
Length++;
}
return Length;
}
//注意是JSON对象而不是JSON数据字符串
function getJsonObjLength(jsonObj){
var Length=0;
for(var item in jsonObj){
Length++;
}
return Length;
}
//注意是JSON对象而不是JSON数据字符串
转载于:https://my.oschina.net/u/1035715/blog/479767