3

我想 。具有多个关键字的自动完成文本框。它来自数据库。如果我使用 jQuery 并在客户端进行操作意味着。如果数据库大小很大,则会导致一些问题。我需要知道这是如何在服务器端完成的并获得正确的结果。

我已经看过这个话题,但是操作是在客户端完成的。我直接从数据库中需要它。

    <html>
 <head>
    <title>Testing</title>
    <link href="css/jquery-ui-1.10.3.custom.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
        .srchHilite { background: yellow; }
    </style>
    <script src="scripts/jquery-1.9.1.min.js" type="text/javascript"></script>
    <script src="scripts/jquery-ui-1.10.3.custom.min.js" type="text/javascript"></script>
    <script type="text/javascript">

        $(document).ready(function() {
            NewAuto();
        });

        function NewAuto() {
            var availableTags = ["win the day", "win the heart of", "win the heart of someone"];
            alert(availableTags);  // alert = win the day,win the heart of,win the heart of someone
            $("#tags").autocomplete({
                source: function(requestObj, responseFunc) {
                    var matchArry = availableTags.slice(); // Copy the array
                    var srchTerms = $.trim(requestObj.term).split(/\s+/);
                    // For each search term, remove non-matches.
                    $.each(srchTerms, function(J, term) {
                        var regX = new RegExp(term, "i");
                        matchArry = $.map(matchArry, function(item) {
                            return regX.test(item) ? item : null;
                        });
                    });
                    // Return the match results.
                    responseFunc(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>
    <div>
        <label for="tags">
            Multi-word search:
        </label>
        <input type="text" id="tags" />
    </div>
</body>
</html>
4

2 回答 2

0

看看 Select2 它可能会对你有所帮助。

Select2 是一个基于 jQuery 的选择框替代品。它支持搜索、远程​​数据集和无限滚动结果。

关联

于 2013-07-13T17:37:01.267 回答
0

在您的代码中,您提供了源作为数组。正如您在评论中提到的,问题是如何在 jquery 中获取数据。

要完成这项工作,您需要执行以下操作

  1. 在标题中加载 jquery,这是您已经完成的。
  2. 为源标签提供数组、字符串或函数。[查看源标签的api][1]

     [1]: http://api.jqueryui.com/autocomplete/#option-source
    
  3. 在您的服务器端脚本中,提供 Jason 编码的字符串。

如果你检查 API,你可以看到他们已经明确提到了这一点。

这是jquery代码

  $(function() {


    $( "#option_val" ).autocomplete({
     dataType: "json",
      source: 'search.php',
      minLength: 1,
      select: function( event, ui ) {
        log( ui.item ?
          "Selected: " + ui.item.value + " aka " + ui.item.id :
          "Nothing selected, input was " + this.value );
      }
    });
  });
  </script>

这是 php 代码,如果您使用不同的服务器端脚本语言,请见谅。

<?php
// Create connection
$con=mysqli_connect("localhost","wordpress","password","wordpress");

// Check connection
if (mysqli_connect_errno($con))
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$result=mysqli_query($con,"select * from wp_users");

while($row = mysqli_fetch_array($result))
  {

    $results[] = array('label' => $row['user_login']);
  }

echo json_encode($results);
mysqli_close($con);
?>
于 2013-07-14T08:15:50.307 回答