select2:unselecting 在删除选择之前触发。
$('#brandCodeList').on('select2:unselecting',function() {
if (!confirm('你确定要删除此项吗?')){
return false;
} else {
return true;
}
})
更多的select2插件的事件使用方法请戳:https://select2.org/programmatic-control/events