gpt4 book ai didi

jquery - jquery 自动完成多值插件中的 minLength

转载 作者:行者123 更新时间:2023-12-01 00:49:00 26 4
gpt4 key购买 nike

我正在使用 jquery 自动完成插件。配置为使用多个值。

我设置选项minLength:2

minLength 选项仅适用于第一个自动建议单词,对于多个值则不起作用。

我如何配置或需要重写哪种方法来解决此问题。

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

最佳答案

jQuery UI 网站上的多个远程演示演示了此行为。您只需要添加自定义搜索功能即可:

$('#autocomplete').autocomplete({
search: function() {
// custom minLength
var term = extractLast( this.value );
if ( term.length < 2 ) {
return false;
}
}
});

参见:http://jqueryui.com/demos/autocomplete/#multiple-remote

关于jquery - jquery 自动完成多值插件中的 minLength,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10068061/

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