bootstrap multiselect get selected values

前端 未结 7 1669
难免孤独
难免孤独 2021-01-31 16:39

How do I get back on onChange all selected values in my multiselect dropdown. Used plugin here. Trying to use the following but I think I\'m on the wrong track

$         


        
7条回答
  •  爱一瞬间的悲伤
    2021-01-31 17:13

    Shorter version:

    $('#multiselect1').multiselect({
        ...
        onChange: function() {
            console.log($('#multiselect1').val());
        }
    }); 
    

提交回复
热议问题