属性信息是动态时访问json对象

时间:2012-04-12 05:38:25

标签: javascript javascript-objects

我的服务器响应如下:

{
    data : [
              {
                 name: "ADeal",
                 image: "images/adeal.png",
              },
              {
                 name: "SDeal",
                 image: "images/sdeal.png",
              }
          ]
}

我能够像这样解析它: var jsonObj = JSON.parse(serverResponse)。并且还知道访问这样的对象: jsonObj.data [1] .name

但在我的情况下,我在变量中获取属性信息。考虑这个例子:

function dynImage(prop, el, jsonObj){
    //Here, prop contains data[1].name
    //How can i access the jsonObj and set it to el(i.e, reference of div element)

el.style.backgroundImage = url('');

}

0 个答案:

没有答案