for(x in arr){
for(y in arr[x]){
alert(y + ":" + arr[x][y])
}
}
js循环遍历对象的方法
var array = {
'key1':1,
'key2':2
}
for(let key in array){
console.log(key + '---' + obj[key])
}
第二种方法
const obj = {
id:1,
name:'zhangsan',
age:18
}
console.log(Object.keys(obj))
console.log(Object.values(obj))