0

我有一个 jquery 搜索建议。该功能运行正常。但现在我想要功能检测继续搜索。

示例:我想搜索姓名 David,我在文本框中输入文本:Da。并会显示名称建议。现在,如果我单击每个位置,div 框建议将关闭对吗?这里是我想要的,当我再次点击文本框搜索时,它会显示我上次输入的 div 框建议,如下所示:Da

到目前为止,这是 JS 代码:

$(document).ready(function() {
    $(".searchs").keyup(function() {
        var searchbox = $(this).val();
        var dataString = 'searchword=' + searchbox;
        if (searchbox == '') {
            $("#display").hide();
        } else {
            $.ajax({
                type: "POST",
                url: "searchs.php",
                data: dataString,
                cache: false,
                success: function(html) {
                    $("#display").html(html).show();
                }
            });
        }
        return false;
    });
    $(".searchs").blur(function() {
        $("#display").hide();
    });
});

任何想法 ?

4

1 回答 1

1

如果文本框中有文本,以下是当用户单击文本框时如何显示建议 div。

$(".searchs").focus(function()
{
  var seachbox = $(this).val(); /*note, you will need to change $(this) to the proper selector of your textbox*/
  if(seachbox != '')
  {
    $("#display").show();
  }
});
于 2012-12-03T04:27:39.770 回答