理解jBox访问数组中的属性

时间:2015-07-27 21:46:18

标签: javascript arrays jbox

我刚刚浏览了jBox.js的代码并遇到了以下片段:

var appendImage = function(gallery, id, preload, open) {
  if (jQuery('#jBox-image-' + gallery + '-' + id).length) return;

  var image = jQuery('<div/>', {
    id: 'jBox-image-' + gallery + '-' + id,
    'class': 'jBox-image-container'
  }).css({
    backgroundImage: 'url(' + this.images[gallery][id].src + ')',
    backgroundSize: this.options.imageSize,
    opacity: (open ? 1 : 0),
    zIndex: (preload ? 0 : this.imageZIndex++)
  }).appendTo(this.content);

  var text = jQuery('<div/>', {
    id: 'jBox-image-label-' + gallery + '-' + id,
    'class': 'jBox-image-label' + (open ? ' active' : '')
  }).html(this.images[gallery][id].label).appendTo(this.imageLabel);

  !open && !preload && image.animate({opacity: 1}, this.options.imageFade);
}.bind(this);

现在我的问题是关于一个非常复杂的代码行试图访问数组中的某个属性,我在谈论下面的代码行:

this.images[gallery][id].src

上面的线路真的试图访问什么样的阵列?我已经工作并访问过如下的数组:

var s = [{
  a : 'name',
  b : 'surname'
}];

val = s[0].a; // "name"

console.log(val);

但我突出显示的语法似乎有一点额外的层次结构。对不起,我仍然是一个javascript新手,我发现很难想象如何访问如下所示的数组。

this.images[gallery][id].src

会是什么样子?那么有人可以举个例子吗?并解释一下?

谢谢。

1 个答案:

答案 0 :(得分:2)

gallery, id可能只是字符串,您可以使用以下属性访问器:

var gallery = 'galleryx',
    id      = 'idx';

var images = { 'galleryx': { 'idx': 2 } };

console.log(images[gallery][id]) // === 2