jquery push to make multidimensional array

我只是一个虾纸丫 提交于 2019-12-04 03:52:16

You are creating Item as an object. You want it to be an array to be able to push into it.

var ItemArray = [];
ItemArray.push({
    RoomName : 'RoomName', 
    Item : []
});

ItemArray[0].Item.push("New Item");

console.log(ItemArray);

Here is a good blog post that has in-depth detail about the difference between objects and arrays.

var tdarray = [[]];
tdarray[0].push(22);
tdarray[0].push(23);
alert(tdarray[0][1]); //you can change this
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!