gpt4 book ai didi

php - jquery 自动完成选项不起作用

转载 作者:行者123 更新时间:2023-11-30 18:39:05 26 4
gpt4 key购买 nike

我正在使用 jquery 自动完成

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'></script>
<script src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js'></script>

一切正常,但现在我正在尝试添加一个不执行任何操作的 minChars 选项。我的代码如下所示:

$( "#searchid" ).autocomplete({
source: "/autocomplete_url.php?more=1",
minChars:6,
select: function(event, ui) {
$("#searchid").val(ui.item.value);
$("#formid").submit();
}
});

一切正常,除了它忽略了我添加的选项。为什么/如何调试问题?

更新:根据下面的回答,我已经改为使用 minLength。我试过以两种不同的方式添加,但它不起作用:/这是我的"new"代码:

    $( ".selector" ).autocomplete({ minLength: 6 });        
$( "#searchid" ).autocomplete({
source: "/autocomplete_url.php?more=1",
minLength:6,
select: function(event, ui) {
event.preventDefault();
$("#searchid").val(ui.item.value);
$("#formid").submit();
}
});

谢谢

最佳答案

不是minChars而是minLength
http://jqueryui.com/demos/autocomplete/#option-minLength

$( ".selector" ).autocomplete({ minLength: 0 });

关于php - jquery 自动完成选项不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7380833/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com