日期:2014-05-16  浏览次数:20331 次

javascript获取对象所有的属性名称
js获取对象的所有属性值,以便进行进一步操作:
for(attrubute in deskTop)
{
alert(attrubute);
}