js 获取 对象 属性名称(转载)
来源:https://www.cnblogs.com/YuyuanNo1/p/9257634.html
dataObj = {
name : su,
age : 26,
height : 18cm
};
for(var st in dataObj) {
console.dir(st);
}
/////////////打印
name
age
height
树立目标,保持活力,gogogo!
来源:https://www.cnblogs.com/YuyuanNo1/p/9257634.html
dataObj = {
name : su,
age : 26,
height : 18cm
};
for(var st in dataObj) {
console.dir(st);
}
/////////////打印
name
age
height