无法让typeahead.js工作

时间:2015-11-07 13:28:57

标签: javascript jquery typeahead.js typeahead

输入框显示,但是预先输入功能不起作用。它使用最新的jquery和typeahead.bundle.min.js库。

<!doctype html>
<html lang="en">
<head>
    <title></title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
    <script src="typeahead.bundle.min.js"></script>

    <script type="text/javascript">
        $(document).ready(function () {

            $('.typeahead').typeahead({
                name: 'RealFood',
                source: ["Spinach", "Kale", "Coconut", "Avocado", "Banana", "Granola", "Beets"]
            });

        });
    </script>
</head>
<body>
    <div style="width: 1000px; height: 300px;">
        <div style="float: left; width: 500px">
            <h3>Hungry?</h3>
            <input class="typeahead" type="text" placeholder="Food Item" autocomplete="off">
        </div>
    </div>
</body>
</html>

2 个答案:

答案 0 :(得分:1)

尝试使用Bloodhound包含预先输入的完整路径。见Typeahead - Examples

&#13;
&#13;
<!doctype html>
<html lang="en">

<head>
  <title></title>
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>

</head>

<body>
  <div style="width: 1000px; height: 300px;">
    <div style="float: left; width: 500px">
      <h3>Hungry?</h3>
      <input class="typeahead" type="text" placeholder="Food Item" autocomplete="off">
    </div>
  </div>
  <script src="http://twitter.github.io/typeahead.js/releases/latest/typeahead.bundle.js"></script>

  <script type="text/javascript">
    $(document).ready(function() {

      var food = new Bloodhound({
        datumTokenizer: Bloodhound.tokenizers.whitespace,
        queryTokenizer: Bloodhound.tokenizers.whitespace,
        local: ["Spinach", "Kale", "Coconut", "Avocado", "Banana", "Granola", "Beets"]
      });

      $('.typeahead').typeahead({
        hint: true,
        highlight: true,
        minLength: 1
      }, {
        name: 'RealFood',
        source: food
      });

    });
  </script>
</body>

</html>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

Typeahead对我来说也不起作用,但是awesomplete做了:

https://github.com/LeaVerou/awesomplete