这种标准方法有多种方法可以使用Object.keys:
你可以做
Object.keys
Array.Prototype.forEach
Object.keys(obj).forEach(function(key) { console.log(key + " " + obj[key]); });