我有Multiselect下拉列表。每当有选择或取消选择时,我需要获得该值。 我正在使用更改事件,但很难选择/取消选择哪个选项。
答案 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
});