2

我對一小組值使用Autocomplete。我希望當用戶關注輸入框(使用鍵盤或鼠標)時,立即顯示「自動完成」源值,而不是等待輸入框輸入。jQuery自動完成 - 顯示焦點值的列表

如何獲得源值立即顯示焦點?

謝謝你,

 $("#cityInput").autocomplete({ 
      minLength: 0, // With not that many cities, require at no characters before showing autocomplete 
      source: getJson(), 
      // plug-in to the select event in order to keep KnockOut informed about the 
     }); 
+0

什麼是「立即」? – Madbreaks

+0

「當用戶關注輸入框時」我想顯示自動完成列表 – contactmatt

回答

5

您可以通過撥打「搜索」自動完成的方法,它的「焦點」事件,看看這個JQFAQ.com話題該說如何做到這一點做到這一點。還有其他一些與autocomplete相關的有趣的常見問題,這可能對您有所幫助。

+0

太棒了,謝謝! – contactmatt

相關問題