这有几个主题。但是,似乎许多变通办法不再适用于最新版本的Chrome(例如41.0 ......在本主题发布时),而我无法找到最新的解决方案。
此外,我所挣扎的模式使用了data-rel
属性:
<input data-rel='city' type='text' autocomplete='off' autocorrect='off' spellcheck='false'/>
摆脱这种自动填充的最佳想法是什么?
答案 0 :(得分:2)
只需使用自动填充功能。
<form name="form1" id="form1" method="post" autocomplete="off">
<input data-rel='city' type='text' />
</form>