我正在使用Twitter's Typeahead.js (Not the one included in Bootstrap),我想知道Better-Typeahead (Bootstrap)
中是否存在类似于minLength = 0的函数Triggering on input looked promising,但我不希望触发下拉列表时输入框中有任何文字。
答案 0 :(得分:5)
是的,数据集有minLength
选项,请参阅代码here。它已经在since v0.9.1左右,但它还没有进入自述文件。
以下是您使用它的方式:
$('.typeahead').typeahead({
minLength: 3,
local: [/* ... */]
});