DOM走javascript

时间:2011-04-19 23:33:02

标签: javascript dom javascript-framework

如何从这里获取图片的价值

 -Screen
    - Customers
      + 0
      + 1
      - 2
         +testings
         - Portals
             -pictureportal
              + 0
              - 1
                 - name             "portal 1"

以上是它在firefox DOM中呈现的方式。我想提醒pictureportal中的名称值  我试过了

 alert(Screen.Customers[2]['Portals']['pictureportals'][1]['name']); 

但那不起作用

1 个答案:

答案 0 :(得分:1)

您似乎并没有尝试遍历DOM,而是访问深层对象属性。

如果这是对的,那就是这样的:

Screen.Customers[2].Portals.pictureportal[1].name

请注意,我使用的是pictureportal,而不是pictureportals