var num =[];
for (var i = 0; i < 10; i++) {
var count = {};//在里面定义对象
count= i;
num.push(count);
}
只需要把你要push的变量定义为对象就好了。
参考来自:https://blog.csdn.net/weixin_38098192/article/details/80351884
var num =[];
for (var i = 0; i < 10; i++) {
var count = {};//在里面定义对象
count= i;
num.push(count);
}
只需要把你要push的变量定义为对象就好了。
参考来自:https://blog.csdn.net/weixin_38098192/article/details/80351884
本文标题:js中数组push对象,前面的值总是被最后一次的值覆盖的问题
本文链接:https://www.haomeiwen.com/subject/gvulqctx.html
网友评论