0

我想搜索栏执行所有单词。包括土耳其语字母(Ö、Ç、İ、Ş、Ğ、Ü)。如何为这些单词展开选择的搜索栏?

例如:我会搜索“istanbul”,但它说找不到“İstanbul”,因为“i”是小写的。

我该如何解决?

https://github.com/harvesthq/chosen

4

3 回答 3

2

我添加了一些代码来解决所选库的问题。

// Added following lines to 304 - 305 lines for version 1.0.0
var letters = { "İ": "[İi]", "I": "[Iı]", "Ş": "[Şş]", "Ğ": "[Ğğ]", "Ü": "[Üü]", "Ö": "[Öö]", "Ç": "[Çç]", "i": "[İi]", "ı": "[Iı]", "ş": "[Şş]", "ğ": "[Ğğ]", "ü": "[Üü]", "ö": "[Öö]", "ç": "[Çç]" };
escapedSearchText = escapedSearchText.replace(/(([İIŞĞÜÇÖiışğüçö]))/g, function(letter){ return letters[letter]; });

如需完整解决方案,您可以查看以下链接:https ://gist.github.com/hkulekci/7091324

于 2013-10-21T21:37:35.520 回答
0

我解决了这个问题。底部的解决方案;

String.prototype.turkce=function() {
  var str = [];
  for(var i = 0; i < this.length; i++) {
  var ch = this.charCodeAt(i);
  var c = this.charAt(i);
  if(ch == 105) str.push('İ');
  else if(ch == 305) str.push('I');
  else if(ch == 287) str.push('Ğ');
  else if(ch == 252) str.push('Ü');
  else if(ch == 351) str.push('Ş');
  else if(ch == 246) str.push('Ö');
  else if(ch == 231) str.push('Ç');
  else if(ch >= 97 && ch <= 122) str.push(c.toUpperCase());
  else str.push(c);
  }
  return str.join('');
}
于 2012-11-12T16:35:04.337 回答
0

如果你想用特殊字符搜索......

  1. 打开 selected.jquery.js
  2. 用以下代码替换方法 Chosen.prototype.winnow_results = function()。(注意removeDiacritics()必须是从字符串中删除特殊字符的实现)

Chosen.prototype.winnow_results = function() {
      var found, option, optionHTML, part, parts, regex, regexAnchor, result, result_id, results, searchText, startpos, text, zregex, _i, _j, _len, _len2, _ref;
      this.no_results_clear();
      results = 0;
      searchText = this.search_field.val() === this.default_text ? "" : $('<div/>').text($.trim(this.search_field.val())).html();
      searchText = searchText.removeDiacritics();
      regexAnchor = this.search_contains ? "" : "^";
      regex = new RegExp(regexAnchor + searchText.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&"), 'i');
      zregex = new RegExp(searchText.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&"), 'i');
      _ref = this.results_data;
      for (_i = 0, _len = _ref.length; _i < _len; _i++) {
        option = _ref[_i];
        optionHTML = option.html.removeDiacritics();
        if (!option.disabled && !option.empty) {
          if (option.group) {
            $('#' + option.dom_id).css('display', 'none');
          } else if (!(this.is_multiple && option.selected)) {
            found = false;
            result_id = option.dom_id;
            result = $("#" + result_id);
            if (regex.test(optionHTML)) {
              found = true;
              results += 1;
            } else if (optionHTML.indexOf(" ") >= 0 || optionHTML.indexOf("[") === 0) {
              parts = option.html.replace(/\[|\]/g, "").split(" ");
              if (parts.length) {
                for (_j = 0, _len2 = parts.length; _j < _len2; _j++) {
                  part = parts[_j];
                  part = part.removeDiacritics();
                  if (regex.test(part)) {
                    found = true;
                    results += 1;
                  }
                }
              }
            }
            if (found) {
              if (searchText.length) {
                startpos = optionHTML.search(zregex);
                text = option.html.substr(0, startpos + searchText.length) + '</em>' + option.html.substr(startpos + searchText.length);
                text = text.substr(0, startpos) + '<em>' + text.substr(startpos);
              } else {
                text = option.html;
              }
              result.html(text);
              this.result_activate(result);
              if (option.group_array_index != null) {
                $("#" + this.results_data[option.group_array_index].dom_id).css('display', 'list-item');
              }
            } else {
              if (this.result_highlight && result_id === this.result_highlight.attr('id')) {
                this.result_clear_highlight();
              }
              this.result_deactivate(result);
            }
          }
        }
      }
      if (results < 1 && searchText.length) {
        return this.no_results(searchText);
      } else {
        return this.winnow_results_set_highlight();
      }
};

这是我自己的实现removeDiacritics()这是针对西班牙特殊字符的)

String.prototype.removeDiacritics = function() {
    var diacritics = [
        [/[\300-\306]/g, 'A'],
        [/[\340-\346]/g, 'a'],
        [/[\310-\313]/g, 'E'],
        [/[\350-\353]/g, 'e'],
        [/[\314-\317]/g, 'I'],
        [/[\354-\357]/g, 'i'],
        [/[\322-\330]/g, 'O'],
        [/[\362-\370]/g, 'o'],
        [/[\331-\334]/g, 'U'],
        [/[\371-\374]/g, 'u'],
        [/[\321]/g, 'N'],
        [/[\361]/g, 'n'],
        [/[\307]/g, 'C'],
        [/[\347]/g, 'c'],
    ];
    var s = this;
    for (var i = 0; i < diacritics.length; i++) {
        s = s.replace(diacritics[i][0], diacritics[i][1]);
    }
    return s;
};
于 2014-04-08T20:09:23.940 回答