遍历map
var testMap={"key1":"value1","key2":"value2","key3":new Array("one","two","three")};
for(var key in testMap){
alert(“testMap[”+key+"]="+testMap[key]);
}
遍历map
var testMap={"key1":"value1","key2":"value2","key3":new Array("one","two","three")};
for(var key in testMap){
alert(“testMap[”+key+"]="+testMap[key]);
}