达到最大堆栈大小

时间:2012-08-10 10:44:49

标签: javascript jquery

   var myArray = [];
     $('#students_targeted option:selected,
#cc_students_targeted option:selected').each(function(){
       myArray.push(data);
     });

1 个答案:

答案 0 :(得分:1)

这意味着您已达到最大堆栈大小(换句话说,您已达到阵列中元素的最大限制)。

UPD:您可能需要使用此代码:

   var myArray = [];
     $('#students_targeted option:selected,
#cc_students_targeted option:selected').each(function(){
       myArray.push($(this).val());
     });