Jquery自动完成包含多个关键字,突出显示和部分匹配

时间:2012-09-05 14:53:16

标签: jquery jquery-ui autocomplete jquery-ui-autocomplete

我正在寻找一个JQuery自动完成功能:

  • 搜索部分匹配
  • 突出显示所有出现的事件
  • 允许多个字
  • 允许远程数据源(即PHP根据每个按键动态更新的查询字符串过滤数据库结果)

所以例如

搜索: “我回家了”

返回: “显示 wa y去主页

我正在努力寻找可以提供此功能的东西,尽管人们普遍期待Google风格的自动填充功能。

jquery ui autocomplete(jQueryUI: how can I custom-format the Autocomplete plug-in results?)的monkeypatch接近,但似乎不提供动态远程数据源。

我也接近以下脚本:

var termTemplate = "<span class='ui-autocomplete-term'>%s</span>";
$("#f input").autocomplete({
   source: "livesearch.php",
   open: function(e, ui) {
      var origKeyword = $("#f input").val();
      var acData = $(this).data('autocomplete');
      acData.menu.element.find('a').each(function() {
         var me = $(this);
         var regex = new RegExp(acData.term, "gi");
         me.html(me.text().replace(regex, function(matched) {
            return termTemplate.replace('%s', matched);
         }));
      });

   },
   select: function(event, ui) {
      var keyword = $("#f input").val();
      $("#f input").val('');
      window.location.href = 'MYURLHERE?VARIABLE=' + ui.item.value;
      return false;
   },
   focus: function(event, ui) {
      return false;
   }
});

但是,它不会处理突出显示由空格分隔的多个单词。

如果有人有任何建议,我将非常感激。

2 个答案:

答案 0 :(得分:1)

@ user287212,我对多个关键字的JQuery AutoComplete进行了一些研究。我在这个address中找到了一个例子。这是一个复杂的例子,但有一个带有多个关键字的JQuery AutoComplete示例。如果在符号输入中写入符号,程序将为您带来文件中的条款。此link的示例说明。你可以看看这个链接。

答案 1 :(得分:1)

这是我采用的解决方案:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script type='text/javascript' src='http://code.jquery.com/jquery-1.6.2.js'></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/jquery-ui.js"></script>

<style type='text/css'>
   .srchHilite {background-color: yellow;}
</style>

<script type='text/javascript'>
$(document).ready(function(){

var termTemplate = "<span class='ui-autocomplete-term'>%s</span>";
$("#tags").autocomplete({
 source: function(request, response) {
        $.getJSON("livesearch.php", request, function(data, status, xhr ) {

            var newmatchArry = new Array();
            var matchArry   = data.slice ();
            var srchTerms   = $.trim (request.term).split (/\s+/);

                //--- For each search term, remove non-matches.
                $.each (srchTerms, function (J, term) {
                    var regX    = new RegExp (term.value, "i");
                    matchArry   = $.map (matchArry, function (item) {
                        return regX.test (item)  ?  item  : null;
                    } );
                } );

            response(matchArry);

        });
    },

  open:   function (event, ui) {
                /*--- This function provides no hooks to the results list, so we have to trust the
                    selector, for now.
                */
                var resultsList = $("ul.ui-autocomplete > li.ui-menu-item > a");
                var srchTerm    = $.trim ( $("#tags").val () ).split (/\s+/).join ('|');

                //--- Loop through the results list and highlight the terms.
                resultsList.each ( function () {
                    var jThis   = $(this);
                    var regX    = new RegExp ('(' + srchTerm + ')', "ig");
                    var oldTxt  = jThis.text ();

                    jThis.html (oldTxt.replace (regX, '<span class="srchHilite">$1</span>') );
                } );
            }
} );

});
</script>
</head>

<body>
<input id="tags">

</div>
</body>

</html>