2

我将自动完成用于一小组值。我希望当用户关注输入框(使用键盘或鼠标)时立即显示“自动完成”源值,而不是等待他们输入。

如何让源值在焦点后立即显示?

谢谢你,

        $("#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 
        });
4

1 回答 1

5

您可以通过在其“焦点”事件上调用自动完成的“搜索”方法来做到这一点,检查这个JQFAQ.com主题,它说明了如何做到这一点。很少有其他有趣的与自动完成相关的常见问题解答,可能对您有所帮助。

于 2012-11-27T11:22:32.810 回答