单击jQuery autoComplete查看全部?

问题描述 投票:59回答:21

我以一种相对简单的方式使用jQuery的自动完成:

$(document).ready(function() {
  var data = [ {text: "Choice 1"}, 
               {text: "Choice 2"}, 
               {text: "Choice 3"} ]

$("#example").autocomplete(data, {
  matchContains: true,
  minChars: 0,
  formatItem: function(item) 
    { return item.text; }
    }
  );
  });

如何添加一个onclick事件(如按钮或链接),它将显示自动完成的所有可用选项?基本上我正在寻找自动完成和选择/下拉元素的混合。

谢谢!

jquery autocomplete jquery-autocomplete
21个回答
18
投票

我无法在文档中看到明显的方法,但您尝试在启用自动填充的文本框上触发焦点(或单击)事件:

$('#myButton').click(function() {
   $('#autocomplete').trigger("focus"); //or "click", at least one should work
});

2
投票

你可以用这个:

$("#example").autocomplete( "search",  $("#input").val() );

2
投票

这显示了所有选项:"%"(见下文)

重要的是你必须将它放在前面的#example声明之下,就像下面的例子一样。我花了一段时间才弄明白。

$( "#example" ).autocomplete({
            source: "countries.php",
            minLength: 1,
            selectFirst: true
});

$("#example").autocomplete( "search", "%" );

2
投票

希望这有助于某人:

$('#id')
        .autocomplete({
            source: hints_array,
            minLength: 0, //how many chars to start search for
            position: { my: "left bottom", at: "left top", collision: "flip" } // so that it automatically flips the autocomplete above the input if at the bottom
            })
        .focus(function() {
        $(this).autocomplete('search', $(this).val()) //auto trigger the search with whatever's in the box
        })

2
投票
<input type="text" name="q" id="q" placeholder="Selecciona..."/>


<script type="text/javascript">
//Mostrar el autocompletado con el evento focus
//Duda o comentario: http://WilzonMB.com
$(function () {
    var availableTags = [
        "MongoDB",
        "ExpressJS",
        "Angular",
        "NodeJS",
        "JavaScript",                
        "jQuery",
        "jQuery UI",
        "PHP",
        "Zend Framework",
        "JSON",
        "MySQL",
        "PostgreSQL",
        "SQL Server",
        "Oracle",
        "Informix",
        "Java",
        "Visual basic",
        "Yii",
        "Technology",
        "WilzonMB.com"
    ];
    $("#q").autocomplete({
        source: availableTags,
        minLength: 0
    }).focus(function(){            
       $(this).autocomplete('search', $(this).val())
     });
});
</script>

http://jsfiddle.net/wimarbueno/6zz8euqe/


1
投票

我使用属性minChars:0和之后解决了这个问题,触发了两次点击。 (点击输入后自动完成显示)我的代码

<input type='text' onfocus='setAutocomplete(this)'>

function setAutocomplete(el){
    $(el).unbind().autocomplete("./index.php", {autoFill:false, minChars:0, matchContains:true, max:20});
    $(el).trigger("click");$(el).trigger("click");
}

1
投票

我看到所有答案似乎都是完整的。

如果要在光标位于文本字段中时获取列表,或者单击匹配标签时,请按以下步骤操作:

//YourDataArray = ["foo","bar"];
$( "#YourID" ).autocomplete({
            source: YourDataArray 
        }).click(function() { $(this).autocomplete("search", " "); });

这在Firefox,IE,Chrome中运行良好......


1
投票
$("#searchPkgKeyWord").autocomplete("searchURL",
        {
            width: 298,
            max: 1000,
            selectFirst: false
        }).result(function (event, row, formatted) {
            callback(row[1]);
        }).focus(function(){
            $(this).click(); //once the input focus, all the research will show
        });

0
投票

我无法让$("#example").autocomplete( "search", "" );部分工作,只有一次我用我的源代码中存在的字符改变了我的搜索。所以我随后使用了例如$("#example").autocomplete( "search", "a" );


0
投票

我想更好的选择是放$(“#idname”)。autocomplete(“search”,“”);进入文本框的onclick参数。从选择开始,jquery就会引入焦点,这可能是一种解决方法。不知道它是否应该是一个可接受的解决方案。


0
投票

我最近需要这样做,在尝试了几种不同的排列后(使用onfocus,onbox文本框等),我终于确定了这个......

 <input id="autocomplete" name="autocomplete" type="text" 
 value="Choose Document">

 <p>
 <button type="submit" value="Submit" name="submit" id="submit" >
  Submit
 </button>
 </p>

<script type="text/javascript">

$("#autocomplete").autocomplete(
{
source: '@Url.Content("~/Document/DocumentTypeAutoComplete/")' //<--ddl source
, minLength: 0 // <-- This is necessary to get the search going on blank input
, delay: 0
, select: function (event, ui) 
  {
  if (ui.item) {
     $("#autocomplete").val(ui.item.value);//<-- Place selection in the textbox
          $("docForm").submit(); 
          loadDocTypeCreatePartial(ui.item);
          $("#submit").focus(); //This stops the drop down list from reopening 
                                // after an item in the select box is chosen
                                // You can place the focus anywhere you'd like,
                                // I just chose my *submit* button
                }
   }
  }).focus(function () {
    // following line will autoselect textbox text
    // making it easier for the user to overwrite whats in the 
    // textbox
    $(this).select();

    //The below line triggers the search function on an empty string
    $(this).data("autocomplete").search('');
   });
 </script>

这将在焦点上打开自动完成ddl列表(即使您在输入框中有默认文本,就像我上面那样)。

它还会自动选择文本框中的文本,以防止用户清除文本。

从自动完成列表中选择一个项目后,它会将该项目放入自动完成输入框并将焦点移动到另一个控件(从而防止自动完成重新打开)。

我计划通过在有机会时使用Chosen升级向非常漂亮的Melting Ice选择列表添加动态Ajax调用来替换它。


99
投票

您可以触发此事件以显示所有选项:

$("#example").autocomplete( "search", "" );

或者参见下面链接中的示例。看起来就像你想要做的。

http://jqueryui.com/demos/autocomplete/#combobox

编辑(来自@cnanney)

注意:您必须在自动完成中为空搜索字符串设置minLength:0以返回所有元素。


0
投票

我用这种方式:

$("#autocomplete").autocomplete({
                source: YourDataArray,
                minLength: 0,
                delay: 0
            });

然后

OnClientClick="Suggest(this); return false;"/>

 function Suggest(control) {
                var acControl = $("#" + control.id).siblings(".ui-autocomplete-input");
                var val = acControl.val();
                acControl.focus();
                acControl.autocomplete("search");

0
投票

您也可以使用不带参数的搜索功能:

jQuery("#id").autocomplete("search", "");

35
投票

我觉得这个效果最好

var data = [
    { label: "Choice 1", value: "choice_1" },
    { label: "Choice 2", value: "choice_2" },
    { label: "Choice 3", value: "choice_3" }
];

$("#example")
.autocomplete({
    source: data,
    minLength: 0
})
.focus(function() {
    $(this).autocomplete('search', $(this).val())
});

它搜索标签并将值放入元素$(#example)


7
投票

为了显示所有项目/模拟组合框行为,首先应确保将minLength选项设置为0(默认值为1)。然后,您可以绑定click事件以使用空字符串执行搜索。

$('inputSelector').autocomplete({ minLength: 0 });
$('inputSelector').click(function() { $(this).autocomplete("search", ""); });

5
投票

来自:Display jquery ui auto-complete list on focus event的解决方案

使其不止一次工作的解决方案

<script type="text/javascript">
$(function() {
    $('#id').autocomplete({
        source: ["ActionScript",
                    /* ... */
                ],
        minLength: 0
    }).focus(function(){     
        //Use the below line instead of triggering keydown
        $(this).data("autocomplete").search($(this).val());
    });
});


4
投票

试试这个:

    $('#autocomplete').focus(function(){
        $(this).val('');
        $(this).keydown();
    }); 

和minLength设置为0

每次都有效:)


3
投票
 $j(".auto_complete").focus(function() { $j(this).keydown(); })

3
投票

您必须将minLength设置为零才能使其正常工作!这是工作示例。

$( "#dropdownlist" ).autocomplete({
      source: availableTags,
      minLength: 0 
    }).focus(function() {
      $(this).autocomplete('search', $(this).val())
    });
});

2
投票

这是唯一对我有用的东西。列表每次显示并在选择时关闭:

$("#example")
.autocomplete(...)
.focus(function()
{
  var self = this;

  window.setTimeout(function()
  {
    if (self.value.length == 0)
      $(self).autocomplete('search', '');
  });
})
© www.soinside.com 2019 - 2024. All rights reserved.