答案 0 :(得分:1)
您可以使用数组的push()
方法执行此操作:
// assuming 'arr' is the variable containing the array you showed in the question:
arr.push({
AgentOnlyFieldFlag: 'False',
// other properties here...
});
另请注意,您应该真正更改AgentOnlyFieldFlag
,BlankCaptionFlag
和PromatchFlag
以包含布尔值而不是字符串。
答案 1 :(得分:0)
1.您可以在jquery中创建一个普通对象
例如:
var foo = {foo:“bar”,你好:“世界”};
参考:http://api.jquery.com/jquery/
2.您可以在jquery中创建数组
例如:
var array = new Array();
Ex:array.push(foo);