基于变量键名检索对象

时间:2018-03-10 11:58:52

标签: javascript jquery object

如何使用其他变量检索对象子项。

守则

var product = {
  '123':{
    'name':'Basket',
    'price':'12.30'
  }
}

var id = 123;

var basket_price = product.id.price;    // I want to use the id value
                                        // as the reference to
                                        // retrieve the object child

实现这一目标的正确方法如何?显然上面的方法是不成功的,因为我没有指定任何孩子的关键名称为“id'在对象定义中。

1 个答案:

答案 0 :(得分:0)

click