如何在bootstrap-multiselect中获取所选文本。
在onChange函数中,它带有值,以及我使用时的文本
var selectedText = $( "#id_multiSelect option:selected" ).text();
它显示所有选中的没有任何空格。
答案 0 :(得分:0)
您可以迭代所选的选项。
以下是一个例子:
$("#id_multiSelect option:selected").each(function() {
console.log(this.text); //this will give you the selected text values one by one ... to get value use this.value in place of this.text
});