gpt4 book ai didi

javascript - JavaScript 数组中的对象插入问题

转载 作者:行者123 更新时间:2023-11-30 23:59:45 25 4
gpt4 key购买 nike

我有一个如下所示的 JavaScript 数组:

[
{type: 'text', name: 'title', id: 'title', placeholder: 'Type here'},
{type: 'textarea', name: 'description', id: 'description', placeholder: 'Type here'}
]

现在我想插入{type: 'text', name: 'age', id: 'age', placeholder: 'Type here'}在第一个对象之后。所以我的最终结果集将如下所示:

[
{type: 'text', name: 'title', id: 'title', placeholder: 'Type here'},
{type: 'text', name: 'age', id: 'age', placeholder: 'Type here'}
{type: 'textarea', name: 'description', id: 'description', placeholder: 'Type here'}
]

我想要纯 JavaScript 或 jQuery!

最佳答案

像这样:

var a = [
{type: 'text', name: 'title', id: 'title', placeholder: 'Type here'},
{type: 'textarea', name: 'description', id: 'description', placeholder: 'Type here'}
]

var b= {type: 'text', name: 'age', id: 'age', placeholder: 'Type here'}

a.splice(1,0,b);

console.log(a)

关于javascript - JavaScript 数组中的对象插入问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18125163/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com