我一直在搜索這個問題幾個小時後,但沒有找到任何適當的解決方案,這個問題是我每次保存表單時在頁面上都有三個輸入表單重視它問我密碼保存在Chrome中如何解決使用JavaScript或查詢這個問題如何在Chrome中禁用保存密碼提示
<input type="password" autocomplete="off"/>
我已經嘗試autocomplete='off'
,但它不工作
我一直在搜索這個問題幾個小時後,但沒有找到任何適當的解決方案,這個問題是我每次保存表單時在頁面上都有三個輸入表單重視它問我密碼保存在Chrome中如何解決使用JavaScript或查詢這個問題如何在Chrome中禁用保存密碼提示
<input type="password" autocomplete="off"/>
我已經嘗試autocomplete='off'
,但它不工作
最好的方法是將您的密碼類型更改爲文本,並用星號或點代替任何您喜歡的字符。
change <input type="password" /> to <input type="text" id="password" style="-webkit-text-security: disc;"/>
還有其他的選擇,以及:
input { -webkit-text-security: none; }
input { -webkit-text-security: circle; }
input { -webkit-text-security: square; }
input { -webkit-text-security: disc; /* Default */ }
autocomplete="off"
是正確的代碼,但許多瀏覽器不要」不想支持它。他們想讓用戶選擇代替代碼本身。所以你可以寫它,但瀏覽器可以選擇不讀它。
潛在[已知的問題](https://code.google.com/p/chromium/issues/detail?id=468153)。 – aug