function getJsonObjLength(jsonObj){
var Length=0;
for(var item in jsonObj){
Length++;
}
return Length;
}
//注意是JSON对象而不是JSON数据字符串
本文共 177 字,大约阅读时间需要 1 分钟。
function getJsonObjLength(jsonObj){
var Length=0;
for(var item in jsonObj){
Length++;
}
return Length;
}
//注意是JSON对象而不是JSON数据字符串
转载于:https://my.oschina.net/u/1035715/blog/479767