Jquery Multiselect:如何知道选择/取消选择哪个值

时间:2013-09-05 04:15:53

标签: jquery multi-select

我有Multiselect下拉列表。每当有选择或取消选择时,我需要获得该值。 我正在使用更改事件,但很难选择/取消选择哪个选项。

2 个答案:

答案 0 :(得分:2)

//all options

var all=[];
$('#multiple').each(function(i, selected){ 
    all[i] = $(selected).text(); 
});

//selected options  
var foo = []; 
$('#multiple :selected').each(function(i, selected){ 
    foo[i] = $(selected).text(); 
});

// unselected options
var de= $.grep(all, function(element) {
    return $.inArray(element, foo) !== -1;
});

foo数组中是选定的值

de数组中是未选择的值

答案 1 :(得分:0)

试试这个,

$('#selectId').on('change',function(){ 
    console.log($(this).val());// this will give you an array
});