Chosen Jquery Plugin - getting selected values
问题 How can i get the selected values from the chosen Multi-select Box? 回答1: Like from any regular input/select/etc...: $("form.my-form .chosen-select").val() 回答2: $("#select-id").chosen().val() 回答3: This worked for me $(".chzn-select").chosen({ disable_search_threshold: 10 }).change(function(event){ if(event.target == this){ alert($(this).val()); } }); 回答4: $("#select-id").chosen().val() this is the right answer, I tried, and the value passed is the values separated by "," 回答5: If anyone wants