如何删除"请输入1个或多个字符"文本,所以当我开始输入它时不会显示此消息。
$("#js-example-basic-multiple").select2({
ajax: {
url: url,
dataType: 'json',
cache: false
},
minimumInputLength: 1
});
});
答案 0 :(得分:2)
只需在 语言 选项中覆盖 inputTooShort 属性:
$("#js-example-basic-multiple").select2({
language: {
inputTooShort: function(args) {
return "";
}
}
})
请注意,select2库最旧版本中存在错误:https://github.com/select2/select2/issues/3343