我有一个如下的 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!