gpt4 book ai didi

jquery-select2 - 按 id 和 Select2 中的文本过滤

转载 作者:行者123 更新时间:2023-12-01 15:52:33 25 4
gpt4 key购买 nike

var data = [{ id: 11-07, text: 'enhancement' }, { id: 11-04, text: 'bug' }, 
{ id: 11-08, text: 'duplicate' }, { id: 11-09, text: 'invalid' },
{ id: 11-10, text: 'wontfix' }];

$(".js-example-data-array").select2({
data: data
})
<select class="js-example-data-array"></select>

我想用 id 和文本过滤 select2。默认情况下,它按文本过滤。
我怎样才能按 id 过滤?

最佳答案

您必须使用“匹配器”。

$(".js-example-data-array").select2({
data: data,
matcher: function(term, text, option) {
return text.toUpperCase().indexOf(term.toUpperCase())>=0 || option.val().toUpperCase().indexOf(term.toUpperCase())>=0;
}
})

它将返回按文本或 id 过滤的结果。

关于jquery-select2 - 按 id 和 Select2 中的文本过滤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31019609/

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