DOM 遍历 JavaScript

发布于 2024-11-02 12:32:16 字数 411 浏览 3 评论 0原文

如何从此处获取图片门户的值

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

上面是它在 firefox DOM 中的呈现方式。我想提醒图片门户中名称的值 我尝试过

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

但没用

how to get the value out of the picturesPortals from here

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

Above is how it renders in firefox DOM. I want to alert out the value of name in pictureportal
I tried

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

But that didnt work

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故笙诉离歌 2024-11-09 12:32:16

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

如果这是正确的,它会是这样的:

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

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

It doesn't seem like you're trying to walk the DOM, but access a deep object property.

If that's right, it would be something like this:

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

Note that I'm using using pictureportal and not pictureportals.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文