(function(){ var str = ''; for(var i in obj){ //遍历object str += ' '+(i+' : '+obj[i]); // i+' : '+object[i] ---> 获取属性名 和 属性值 } alert(str); })();