我将自动完成用于一小组值。我希望当用户关注输入框(使用键盘或鼠标)时立即显示“自动完成”源值,而不是等待他们输入。
如何让源值在焦点后立即显示?
谢谢你,
$("#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
});