JS对象,动态获取对象属性值

时间:2021-03-21 19:13:35

  var record = {
      itemName : 'aa',
      itemCode : 'bb'
}
functin getRecordProperty(propertyName){
      //return record.propertyName
      返回record的属性为propertyName变量值对应值
}

  等待大侠们的宝贵意见!

5 个解决方案

#1


record.propertyName就行了
如果不懂,你试下for in

#2


return record[propertyName];

#3


for(var p in record ){
    alert(p + ": " + record[p])
}

你试试这样

#4


引用 2 楼 cvpc 的回复:
return record[propertyName];


+1

#5


类索引器好象叫估计能取到吧.
没必要了就不要那么搞了.

#1


record.propertyName就行了
如果不懂,你试下for in

#2


return record[propertyName];

#3


for(var p in record ){
    alert(p + ": " + record[p])
}

你试试这样

#4


引用 2 楼 cvpc 的回复:
return record[propertyName];


+1

#5


类索引器好象叫估计能取到吧.
没必要了就不要那么搞了.