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

时间:2012-03-05 11:00:47

标签: asp.net google-chrome twitter-bootstrap typeahead

使用twitter bootstrap typeahead我在goahead list

上面获得谷歌浏览器建议列表
 $(document).ready(function () {
        $("[ID$=TextBox]").typeahead({ source: ["aaa", "aab", "aac", "aad"] });
    });

<asp:TextBox ID="TextBox" runat="server" data-provide="typeahead"></asp:TextBox>

enter image description here

2 个答案:

答案 0 :(得分:33)

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

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

autocomplete="off"

答案 1 :(得分:4)

正如Andres Ilich所说,添加autocomplete="off"属性应该可以解决问题。在W3草案中提到: http://www.w3.org/Submission/web-forms2/#the-autocomplete

我对ASP.NET知之甚少,所以我不知道标签是否支持该属性。当我浏览w3school(http://www.w3schools.com/aspnet/prop_webcontrol_textbox_autocompletetype.asp)时,我认为这是熟悉的选项AutoCompleteType="None"。但我不确定这一点。

我认为在jQuery中你可以实现这样的东西:

$("[ID$=TextBox]").attr("autocomplete", "off");