1

我正在使用 javascript 制作一个小脚本,以便在我输入时从数组中查找/显示文本。有点像,谷歌自动建议工具。

这是Js脚本:

<script>
$(function() {
    var availableTags = <?php echo json_encode( $foo ); ?>;
     $( "#tags" ).autocomplete({ source: availableTags });
});
</script>

和 PHP 中的数组

  <?php 
        $foo = array("ambiguious","brown",
        "corps","demanding job","eat the pomes","fooling with it");
    ?>

请注意数组中的每个单词的首字母与其余单词的首字母不同,即。?很好,现在当我输入a而不是显示带有 a 的单词(在本例中为“歧义”)时,它会显示所有包含 a 的单词。

在此处输入图像描述

我想过strpos()要搜索类似的词,但它不起作用。任何想法都会很好。谢谢你。

4

2 回答 2

1

看看API:

http://api.jqueryui.com/autocomplete/

示例:使用自定义源回调仅匹配术语的开头

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>autocomplete demo</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css">
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  <script src="http://code.jquery.com/ui/1.10.1/jquery-ui.js"></script>
</head>
<body>

<label for="autocomplete">Select a programming language: </label>
<input id="autocomplete">

<script>
var tags = [ "c++", "java", "php", "coldfusion", "javascript", "asp", "ruby" ];
$( "#autocomplete" ).autocomplete({
  source: function( request, response ) {
          var matcher = new RegExp( "^" + $.ui.autocomplete.escapeRegex( request.term ), "i" );
          response( $.grep( tags, function( item ){
              return matcher.test( item );
          }) );
      }
});
</script>

</body>
</html>
于 2013-03-03T16:00:15.503 回答
0

参考我的LIVE DEMO

HTML:

List: <input id="myContent" />

查询:

var myTags = ["c++", "java", "php", "coldfusion", "javascript", "asp", "ruby"];
$( "#myContent" ).autocomplete({
    source: function( request, response ) {
        var matches = $.map(myTags, function(tag) {
            if (tag.toUpperCase().indexOf(request.term.toUpperCase()) === 0) {
                return tag;
            }
        });
        response(matches);
    }
});
于 2013-03-03T16:43:48.353 回答