我正在使用select2而我想要一个"全选"选项,应删除所有其他选定值,并且"全部"应该选择选项。当我选择其他可用选项时,"全部"选项应该删除。
喜欢:
$("#ethnicity").dropdown({
change : function (curSelVal) {
if (curSelVal != undefined) {
if (curSelVal == "") {
$("#ethnicity > option:selected").attr('selected', false);
$("#ethnicity option:first").attr('selected', 'selected');
} else {
$("#ethnicity option:first").attr('selected', false);
}
}
}
});