我有多选下拉菜单。每当有选择或取消选择时,我都需要获取值。我正在使用更改事件,但很难获得选择/取消选择的选项。
问问题
7405 次
2 回答
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
数组中是未选择的值
于 2013-09-05T04:19:41.003 回答
0
尝试这个,
$('#selectId').on('change',function(){
console.log($(this).val());// this will give you an array
});
于 2013-09-05T04:21:01.400 回答