我按照說明在rails 3.2.11應用程序中實現auto自動完成,但我需要指定查詢觸發前輸入的最少字符數。 jQuery API文檔有一個屬性「minLength」。我無法弄清楚如何在rails自動完成字段標記中實現此功能。這是我的代碼字段標記。rails 3.2 jquery自動完成最小長度
<%= autocomplete_field_tag 'unit', '', autocomplete_unit_identifier_subjects_path, :id_element => '#subject_id', :size => 75 %>
下面是我遵循的說明的網址。
search: function() {
// custom minLength
var term = extractLast(this.value);
if (term.length < 2) {
return false;
}
},
你可以改變「2」到任何你想要的的minLength到: https://github.com/crowdint/rails3-jquery-autocomplete
http://stackoverflow.com/questions/11106395/how-to-set-的可能的複製至少有兩個字符在jquery-ui-autocomplete –
並非如此,該頁面是純粹的jQuery。這是關於一個鐵軌形式的幫手。 – markhorrocks