var record = {
itemName : 'aa',
itemCode : 'bb'
}
functin getRecordProperty(propertyName){
//return record.propertyName
返回record的属性为propertyName变量值对应值
}
等待大侠们的宝贵意见!
5 个解决方案
#1
record.propertyName就行了
如果不懂,你试下for in
如果不懂,你试下for in
#2
return record[propertyName];
#3
for(var p in record ){
alert(p + ": " + record[p])
}
你试试这样
alert(p + ": " + record[p])
}
你试试这样
#4
+1
#5
类索引器好象叫估计能取到吧.
没必要了就不要那么搞了.
没必要了就不要那么搞了.
#1
record.propertyName就行了
如果不懂,你试下for in
如果不懂,你试下for in
#2
return record[propertyName];
#3
for(var p in record ){
alert(p + ": " + record[p])
}
你试试这样
alert(p + ": " + record[p])
}
你试试这样
#4
+1
#5
类索引器好象叫估计能取到吧.
没必要了就不要那么搞了.
没必要了就不要那么搞了.