Select2 - 过滤特殊字符
Select2 - filtering special characters
我对 select2 插件有疑问。当我使用过滤器并键入 "mąka" 时,它会找到所有带有 "mąka" 和 "maka" 单词的选项。是否可以自定义此脚本以仅查找 "mąka" 单词?
Preview here
对不起我的英语;p
谢谢!
来自 select2 站点 https://select2.github.io/examples.html#matcher
fiddle : https://jsfiddle.net/alaniex/c3Ls1uf3/1/
function matchStart (term, text) {
if (text.toUpperCase().indexOf(term.toUpperCase()) == 0) {
return true;
}
return false;
}
$.fn.select2.amd.require(['select2/compat/matcher'], function (oldMatcher) {
$(".js-example-matcher-start").select2({
matcher: oldMatcher(matchStart)
})
});
我对 select2 插件有疑问。当我使用过滤器并键入 "mąka" 时,它会找到所有带有 "mąka" 和 "maka" 单词的选项。是否可以自定义此脚本以仅查找 "mąka" 单词?
Preview here
对不起我的英语;p
谢谢!
来自 select2 站点 https://select2.github.io/examples.html#matcher
fiddle : https://jsfiddle.net/alaniex/c3Ls1uf3/1/
function matchStart (term, text) {
if (text.toUpperCase().indexOf(term.toUpperCase()) == 0) {
return true;
}
return false;
}
$.fn.select2.amd.require(['select2/compat/matcher'], function (oldMatcher) {
$(".js-example-matcher-start").select2({
matcher: oldMatcher(matchStart)
})
});