作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
虽然我的目标是制作这样的数组,但这可能听起来令人困惑。
var array2D= [
{ locations: [0, 0, 0], status: ["", "", ""] },
{ locations: [0, 0, 0], status: ["", "", ""] },
{ locations: [0, 0, 0], status: ["", "", ""] }
],
所以考虑一下我是否有如下所示的数组。
var locations = [0,0,0];
var status = ["","",""];
我可以以某种方式插入它们制作一个二维数组吗?我尝试过类似的方法,但它不起作用
var the2Darray =[];
the2Darray.push(location,status);
最佳答案
var locations = [0,0,0];
var status = ["","",""];
var the2Darray =[];
the2Darray.push({locations: locations,status: status});
关于javascript - 如何将一个数组插入另一个数组以生成 2 级数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42573187/
我是一名优秀的程序员,十分优秀!