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

1 回答 1

1

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

UPD:您可能需要使用以下代码:

   var myArray = [];
     $('#students_targeted option:selected,
#cc_students_targeted option:selected').each(function(){
       myArray.push($(this).val());
     });
于 2012-08-10T10:49:21.217 回答