1

假设我想从变量数据的空值开始,如何使用 javascript 使用 push 方法来实现这个结果:

var data = [
 {
      label: 'node1',
      children: [
      { label: 'child1' },
      { label: 'child2' }
        ]
      },
      {
      label: 'node2',
      children: [
      { label: 'child3' }
      ]
      }
 ]; 

我努力了:

data.push("label: nodel", "children:"+ ['child1', 'child2']);

查看上面的代码,我需要插入一个将与子列表链接的元素。有人可以帮助我实现这一目标.. 我将非常感激。此致。

4

1 回答 1

2

Is this what you mean?

var object1 = {
                label: 'node1',
                children: [
                    { label: 'child1' },
                    { label: 'child2' }
                    ]
                };
var data = new Array();
data.push(object1);

OR

data.push({ label: 'node1', children: [ { label: 'child1' }, { label: 'child2' } ] });

EDITED TO SHOW YOSHIS VERSION ASWELL

于 2013-08-08T13:32:25.333 回答