所以我有一个select2 Multiple select box(下拉列表),如下所示:
<script type="text/javascript">
$(".js-example-basic-multiple").select2();
</script>
<select id="selector" class="js-example-basic-multiple" multiple="multiple">
<option value="AL">Alabama</option>
...
<option value="WY">Wyoming</option>
</select>
如何使用jquery选择某些选项?
由于
编辑:
我试过这个:
$("#selector option[value='AL']").attr("selected", "selected");
我想从下拉列表中已有的值中进行选择。我不想添加那些已经存在的新值。
所以我想要选择某些值。
答案 0 :(得分:0)
我得到了答案,它是:
$('#IDOFSELECTBOX').val("").change();
我的互联网出现故障,因此无法更新。谢谢你的帮助