清除 Select2 下拉列表的选定元素
为了清除使用 Select2
下拉列表选择的那些值,我们可以使用 empty()
函数。
<select id="select2_example">
<option>Option1</option>
<option>Option2</option>
<option>Option3</option>
</select>
可以使用 Jquery 重置下拉列表。
$("#select2_example").empty();
它也可以重置如下。
$("#select2_example").select2("val", "");