Twitter Typeahead min length = 0等价?

时间:2013-07-02 23:21:42

标签: javascript jquery twitter typeahead.js

我正在使用Twitter's Typeahead.js (Not the one included in Bootstrap),我想知道Better-Typeahead (Bootstrap)

中是否存在类似于minLength = 0的函数

Triggering on input looked promising,但我不希望触发下拉列表时输入框中有任何文字。

1 个答案:

答案 0 :(得分:5)

是的,数据集有minLength选项,请参阅代码here。它已经在since v0.9.1左右,但它还没有进入自述文件。

以下是您使用它的方式:

$('.typeahead').typeahead({
  minLength: 3,
  local: [/* ... */]
});