Select2中是否可以不突出显示某些搜索结果?

时间:2018-06-21 17:29:08

标签: jquery-select2

我们的选择列表中有以下内容:

  1. Ba 1
    • 第1单元
    • 第2单元
  2. 钡2
    • 第3单元

如果我搜索“ Ba”

我明白了

  1. Ba 1
  2. Ba 2

现在它会自动突出显示Ba1。我可以看到它具有一类“ select2-highlighted”

我有办法不突出Ba 1吗?

到目前为止,在我提供的匹配器功能中,我添加了以下代码:

if ($option.hasClass(myClass)) {
    $option.addClass('highlight-none');
}

带有类的.less文件的内容。

.highlight-none {
  background: white !important;
  color: black !important;
}

Ba 1和Ba 2都是具有类'myClass'的li元素

但是,这不起作用。

0 个答案:

没有答案