最近瀏覽器升級后护桦,經(jīng)常默認(rèn)給賬號密碼input框填充內(nèi)容浑厚,我這里找到兩種方法爪喘,在各個瀏覽器下可能某一個版本不太管用宏邮,請自動甄別
方法一:在正常使用的form表單上面新添加一個form表單并隱藏即可解決,要使用的input type=“password”的添加autocomplete="new-password"
<form style="display: none;">
<input name="old-userName" type="text"/>
<input name="old-pwd" type="password"/>
</form>
方法二:使用input的readonly屬性
<input readonly onfocus="this.removeAttribute('readonly');"/>
在input框行內(nèi)寫這句話泽示,可以解決用戶名、密碼自動填充問題