我正在使用Autocomplete来获取一小组值。我希望当用户专注于输入框(使用键盘或鼠标)而不是等待他们输入时,立即显示“自动完成”源值。
如何在焦点上立即显示源值?
谢谢,
$("#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 :(得分:5)
您可以通过在“焦点”事件中调用自动填充的“搜索”方法来执行此操作,请查看此JQFAQ.com主题,其中说明了如何执行此操作。关于autocomplecte的其他一些有趣的常见问题解答可能对您有所帮助。