我正在使用名为 rails3-jquery-autocomplete 的gem
https://github.com/crowdint/rails3-jquery-autocomplete

当没有匹配的记录时,它通常不显示消息“没有现有的匹配”。
但是,现在它总是弹出显示"no existing match"的消息

如何禁用此功能?

我的看法

<%= autocomplete_field_tag 'search', params[:search], autocomplete_community_title_communities_path, :class =>'input', :placeholder => 'keyword' %>

最佳答案

尝试以下脚本

$('autocomplete_element_selector')。on('autocompleteresponse',function(event,ui){
var内容;
if((((content = ui.content)!= null?content [0] .id.length:void 0)=== 0){
$(this).autocomplete('close');
}
});

08-20 04:21