让前脑工作

时间:2014-07-10 16:26:39

标签: jquery twitter-bootstrap bootstrap-typeahead twitter-typeahead

这可能是一个愚蠢的问题,但我遇到了让推特打字工作的问题。

在工作教程here中,我将代码复制到带有bootstrap和typeahead的JS fiddle

我只是使用简单的文字字段:

<input class="typeahead" type="text" placeholder="States of USA">

1 个答案:

答案 0 :(得分:0)

在本教程之后,我们需要一个输入的包装器div,它将应用CSS并在其中创建DOM元素。

声明我们有:

$('#the-basics .typeahead').typeahead({
  hint: true,
  highlight: true,
  minLength: 1
}

意味着我们的包装器将在教程中完成#the-basics,我们需要添加包装器:

<input class="typeahead" type="text" placeholder="States of USA">

为:

<div id="the-basics">
    <input class="typeahead" type="text" placeholder="States of USA" />
</div>

FIDDLE: http://jsfiddle.net/eq4p8/1/