我在with上使用select2
jQuery 插件。我需要将值添加到所选列表(即不是所有选项,而是所选选项,而不添加新选项)。<select>
multiple="multiple"
我知道我可以用这个设置选定的选项:
$("#the_select").select2("val", "the_option_value");
或者,对于多项选择:
$("#the_select").select2("val", ["an_option_value","another_option_value"]);
但是,有没有一种方法可以将选定的选项添加到列表中(即选择一个选项)而不删除其他选项?