我在javascript中有一个数组
var myArr = {
'textId':'123',
'type':'animal',
'content':'hi dog',
'expires':'27/10/2012'
};
$.each(myArr, function(myArrArrKey, myArrArrValue){
console.log( myArrArrValue );
});
上面的控制台打印以下值
123
app
hi app
27/10/2012
现在我想将一个元素附加到现有数组中,我正在尝试像下面这样
myArrValue.push({'status':'active'});
上述推送引发以下错误
TypeError: Object #<Object> has no method 'push'
请帮助我如何附加到现有的数组元素。
我想像这样打印数组
123
app
hi app
27/10/2012
active