我正在创建一个jQuery数组,但是我的代码不断返回[object Object] 3次。

这是我的代码:

var idArray = [];
$('.taskPHP').each(function() {
  var idStr = {
    'taskPHPid': $(this).attr('id'),
    'taskValue': $(this).val()
  }
  idArray.push(idStr);
});

alert(idArray);


编辑:
只是叫我愚蠢...我知道我无法提醒阵列。错误...很多啤酒和编程都不要混在一起。

我会尽快给你信用。谢谢您的帮助。

最佳答案

看起来不错,请尝试console.log并查看其输出,或alert(JSON.stringify(idArray))

09-11 00:51