如何在使用twitter bootstrap typeahead时禁用谷歌浏览器建议列表?

Geo*_*ros 21 asp.net google-chrome typeahead twitter-bootstrap

使用twitter bootstrap typeahead我得到google chrome建议列表上面的typeahead列表

 $(document).ready(function () {
        $("[ID$=TextBox]").typeahead({ source: ["aaa", "aab", "aac", "aad"] });
    });

<asp:TextBox ID="TextBox" runat="server" data-provide="typeahead"></asp:TextBox>
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述

And*_*ich 33

[上述评论部分的后续行动]

您可以通过关闭自动完成功能来关闭引用打字机的输入框上的该功能:

autocomplete="off"
Run Code Online (Sandbox Code Playgroud)