如何使用Chrome停用自动填充功能?

时间:2015-04-02 08:03:13

标签: html html5 google-chrome autocomplete autofill

这有几个主题。但是,似乎许多变通办法不再适用于最新版本的Chrome(例如41.0 ......在本主题发布时),而我无法找到最新的解决方案。

此外,我所挣扎的模式使用了data-rel属性:

<input data-rel='city' type='text' autocomplete='off' autocorrect='off' spellcheck='false'/>

摆脱这种自动填充的最佳想法是什么?

1 个答案:

答案 0 :(得分:2)

只需使用自动填充功能。

<form name="form1" id="form1" method="post" autocomplete="off">
    <input data-rel='city' type='text' />
</form>