jQuery('#additional-channels-list select').live('change', function(){
var current_id = parseInt(jQuery(this).val());
select_values.push(current_id);
console.log(select_values);
console.log(jQuery.inArray(current_id, select_values));
});
我想在没有 ctrl 的情况下创建多项选择,所以我需要将值存储在数组中。当我尝试检查值inArray
时,方法返回给我选择列表中选定元素的位置,而不是有关数组中当前值的信息。我哪里错了?