3

考虑一个包含一些值的数组

array = {'microsoft','micromax', 'miniclip','michael jackson','million','milky way'}

当用户开始输入文本时,说他/她正在尝试输入million。当用户开始'mi'在数组中输入上述建议时,将向用户显示。

我的问题:

让我们假设用户正在输入“迷你剪辑”这个词,通过拼写错误他/她开始输入'mni' or 'minc' or 'nim' or 'imn' or 'nim' instead of 'min',这个场景还需要向用户显示建议。因为,无论如何,这些键入的字符都可以在“miniclip”这个词中找到。Typo 对所有入门级用户/普通用户都很常见。所以我需要 javascript/php/ajax/opensource 库中的代码来适应这种情况。

4

2 回答 2

4

HTML

<form action=""><input type="text" name="word" id="word"></form>
<div id="auto"></div>

JS

$(function(){
    $('#word').keyup(function(e){
        var input = $(this).val();
        $.ajax({
            type: "get",
            url: "autocomplete.php",
            data: {word: input},
            async: true,
            success: function(data){
                var outWords = $.parseJSON(data);
                $('#auto').html('');

                for(x = 0; x < outWords.length; x++){
                    $('#auto').prepend('<div>'+outWords[x]+'</div>'); //Fills the #auto div with the options
                }
            }
        })
    })
});

不要忘记链接jQuery...

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

注意

您需要执行一些操作,例如将onclick事件添加到 childdiv#auto替换#word(输入字段)的内容。

PHP

$array  = array('microsoft','micromax', 'miniclip','michael jackson','million','milky way');
$input  = urldecode($_GET['word']); //Get input word/phrase (decode in case of spaces etc.)
$length = strlen($input);           //Get length of input word
// $min    = $length - 1;              //Length of word - 1
// $max    = $length + 1;              //Length of word + 1

$returned = preg_grep('/^(['.$input.']{'.$length.'}.*)$/i', $array); //Find matches in $array and return as array
$returned = array_values($returned);                                //Re-index from 0

echo json_encode($returned); //Returm json string to ajax call

正则表达式

/^([$input]{$length}.*)$/i
  1. /=> 起始分隔符
  2. ^=> 字符串开始
  3. (=> 开始一个捕获组
  4. [=> 开始一个角色类
  5. $input=> 将输入词添加到字符类
  6. ]=> 结束字符类(4)
  7. {$length}=> 设置字符串长度以匹配字符类(输入单词的长度)
  8. .*=> 匹配任何以下字符 0 次或更多次
  9. )=> 结束捕获组 (3)
  10. $=> 匹配字符串结尾
  11. /=> 结束分隔符
  12. i=> 不区分大小写的修饰符

最小/最大

我已经包含了注释$min$max变量...我认为您可能会喜欢的附加功能...您可以通过更改来实现它们:

{'.$length.'}          <-- Change this
{'.$min.','.$max.'}    <--To that
{'.$length.','.$max.'} <-- Or that (or another combination)

例子

一个例子可能最好地说明这是如何工作的......

假设一个自动正确的数组:

$array = array('loser', 'loses', 'losing');

和输入:

lose

目前 ( {'.$length.'}) 代码将返回:

loser
loses

但是,如果您将其更改为{'.$min.','.$max.'}(并取消注释$min/ $max);它将返回:

losing
loser
loses
于 2013-10-25T12:58:29.893 回答
0

试试这个

这是 index.php

<html>
    <body>
        <input type="text" name="testid" id="testid" >
        <div id="result">

        </div>
    </body>
    <script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
    <script src="https://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script>
    $(document).ready(function(){
        var xhr = null;

        $('#testid').on("keyup", function(){
            if(xhr !== null) { 
                xhr.abort();
            }
            var searchkey = $(this).val();

           xhr = $.ajax({
            method: "POST",
            url: "ajax_request.php",
            data: { searchkey: searchkey }
          })
            .done(function( msg ) {
                $('#result').html(msg);
            });
        });

        $(document.body).on('click', ".listitem", function(e){
            var values = $(this).html();
            $('#testid').val(values);
            $('#result').html('');
            return false;
        });

    });
</script>
</html>

而这个就是你的 ajax_request.php

<?php
$arr = array("Shailesh Sonare", "Hello World", "Hello Universe");

$html = "<ul>";

foreach ($arr as $key => $value) {
    $html .= "<li class='listitem'>" . $value . "</li>";
}

$html .= "</ul>";

echo $html;
于 2016-05-05T12:46:40.590 回答