var myArray = [];
$('#students_targeted option:selected,
#cc_students_targeted option:selected').each(function(){
myArray.push(data);
});
答案 0 :(得分:1)
这意味着您已达到最大堆栈大小(换句话说,您已达到阵列中元素的最大限制)。
UPD:您可能需要使用此代码:
var myArray = [];
$('#students_targeted option:selected,
#cc_students_targeted option:selected').each(function(){
myArray.push($(this).val());
});