js访问object对象全部属性的方法

用for in循环即可

例如:

[pcsh lang="php" tab_size="4" message="" hl_lines="" provider="manual"]

for(var p in res){
				alert(res[p]);
			}

[/pcsh]

 

此处评论已关闭