2015-04-02 58 views
0

有幾個關於此的線程。但是,似乎許多解決方法不再適用於Chrome的最新版本(例如,在本主題發佈時的41.0 ...),而且我找不到任何最新的解決方案。如何使用Chrome停用自動填充功能?

更多,我與利用data-rel屬性的掙扎模式:

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

什麼是擺脫這種自動填充你的最好的想法?

+0

請點擊這裏查看我的解決方法: http://stackoverflow.com/questions/15738259/disabling-chrome-autofill/36030236#36030236 – 2016-03-16 08:31:10

回答

2

只需使用自動完成。

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

謝謝!的確,'autocomplete'應該應用於'form',而不是'input' ... – Yako 2015-04-03 14:12:28

+0

它不起作用。 – Rick 2015-10-08 12:35:27

相關問題