2014-05-14 68 views
3

在Chrome瀏覽器中,我保存了用戶名和密碼。停止瀏覽器自動填寫表單的用戶名和密碼字段

現在,如果我導航到某個其他表單,並且它包含其他某些內容的用戶名和密碼,那麼我保存的那個會在此處自動填充。

我該如何解決這個問題?

+0

可能重複[?是自動完成= 「關閉」 與所有現代瀏覽器兼容(HTTP ://stackoverflow.com/questions/3868299/is-autocomplete-off-compatible-with-all-modern-browsers) –

回答

5

簡單:有一個名爲autocomplete的HTML5屬性。

只需將其設置爲off

<input autocomplete="off"/> 
+2

這不可靠的工作在Firefox。這裏有一些討論http://stackoverflow.com/questions/6487970/disable-firefoxs-auto-fill –

2

autocomplete=off不會阻止填寫憑證,使用以下 - 在

修復瀏覽器自動填充:只讀,並且對焦點設置writeble(點擊選項卡)。

<input type="password" readonly onfocus="this.removeAttribute('readonly');"/> 
+0

,一個工作。但是非常奇怪的是,如果我需要爲其他一些東西設置密碼,則不支持此操作。 – neoexpert

1

消防火狐瀏覽器使用此:

<input type="text" name="prevent_autofill" id="prevent_autofill" value="" style="display:none;" /> 
<input type="password" name="password_fake" id="password_fake" value="" style="display:none;" /> 
<input type="password" name="password" id="password" value="" /> 

對於Chrome瀏覽器: 使用autocomplete="new-password"

相關問題