去除黃色框樣式,添加css樣式
input:-webkit-autofill,
input:-webkit-autofill:focus
{
box-shadow: 0 0 0 1000px white inset;
}
在不需要自動(dòng)補(bǔ)全下拉框的地方加入 autocomplete='new-password'
<input type="text" class="form-control" name="usr_sno" placeholder="賬號(hào)"
required autocomplete="new-password">
禁用密碼輸入框的自動(dòng)補(bǔ)全
可以先將type設(shè)置為text, 在輸入框觸發(fā)onFocus時(shí), 更改type為password