禁用自动填充时Chrome丑陋的消息

时间:2011-11-01 22:01:07

标签: google-chrome autocomplete

自Chrome最近升级以来,我已经开始看到消息“此网页已停用此表单的自动填充功能”。单击表单控件时我的网站上的所有内容(确定,意外双击)autocomplete =“off”(我们正在讨论聊天室等浏览器真的不需要记住以前发送的消息)。

这很难看,有人知道如何禁用它吗?我在网上找不到太多的信息,除了可追溯到2010年的事情,只是说这是一个功能。问题是,它刚刚开始在最新版本上发生,对于运行Chrome的另一台计算机也是如此。

有什么想法吗?

干杯

2 个答案:

答案 0 :(得分:44)

偶然发现了同样的问题并找到了一个简单的解决方法。

您必须将autocomplete属性直接添加到输入字段而不是整个表单。

此代码有效:

<form method="get" action="index.php">
    <input type="text" name="q" autocomplete="off">

这不会

<form method="get" action="index.php" autocomplete="off">
    <input type="text" name="q">

答案 1 :(得分:-3)

It Works for me :)
Guys you just need to add this code under the form tag, please check below:

<form>
<!-- fake fields are a workaround for chrome autofill getting the wrong fields-->
				<input type="text" name="fakeusernameremembered" style="display: none;" />
				<input type="password" name="fakepasswordremembered" style="display: none;" />
			<!--It helps me to remove the autofill in Chrome-->

..........

</form>