我正在使用jquery-select2插件,但我想知道我怎么才能得到以typed关键字开头的结果(比如'myString%')
答案 0 :(得分:10)
documentation实际上为此提供了一个示例:
$("select").select2({
matcher: function(term, text) {
return text.toUpperCase().indexOf(term.toUpperCase())==0;
}
});
上述匹配器不区分大小写,区分大小写,同时删除.toUpperCase()
次调用。