3

我想编写一个自定义 select2(4.0 版)匹配器,以便dotswhitespaces执行搜索时忽略它。

例如。如果其中一个选项是Dr. R. N. Pandey,我应该可以通过在搜索框中Dr. R. N. Pandey输入来找到。rnp

4

2 回答 2

1

受已经提供的答案的启发:

  function ignoreDotAndWhitespace(params, data) {
    params.term = params.term || '';

    term = params.term.toUpperCase();
    text = data.text.toUpperCase().replace(/\./g, '').replace(/\s+/g, '');

    if (text.indexOf(term) > -1 ) {
      return data;
    }
    return false;
  }

  $('.select2').select2({
    matcher: function(params, data) {
      return ignoreDotAndWhitespace(params, data);
    }
  });
于 2016-09-06T05:52:27.393 回答
1

请试试这个:

HTML:

<select class='select2'>
    <option>Select</option>
    <optgroup label="Vegetables">
        <option>A. Celery</option>
        <option>Green R.P Pepper</option>
        <option>Kale</option>
    </optgroup>
    <optgroup label="Fruits">
        <option>Apple</option>
        <option>Orange</option>
        <option>Banana</option>
    </optgroup>
    <optgroup label="Nuts" disabled>
        <option>Almond</option>
        <option>Walnut</option>
        <option>Pine</option>
    </optgroup>
</select>

JS:

(function() {
    function matcher(term, text) {

        term = term.toUpperCase();
        text = text.toUpperCase().replace(/\./g, '').replace(/\s+/g, '');

        if (text.indexOf(term) > -1 ) {
            return true;
        }

        return false;
    }

    $(".select2").select2({
        matcher: matcher
    });
})();

请看演示(<4.0):

https://jsfiddle.net/xfw4tmbx/22/

选择 2 版本 4.0

https://jsfiddle.net/11a998kw/1/

于 2016-09-05T19:38:24.963 回答