gpt4 book ai didi

javascript - Select2 - 过滤特殊字符

转载 作者:行者123 更新时间:2023-11-29 21:08:05 26 4
gpt4 key购买 nike

我对 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)
})
});

关于javascript - Select2 - 过滤特殊字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43000164/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com