Html input防止自动填充autocomplete
input直接设置 autocomplete='off' 或 autocomplete='nope' 是不行的
最有效的方法先设置成只读,获取焦点时再取消只读。
<input readonly onfocus="this.removeAttribute('readonly');" />
Home of Little Jelly
Html input防止自动填充autocomplete
input直接设置 autocomplete='off' 或 autocomplete='nope' 是不行的
最有效的方法先设置成只读,获取焦点时再取消只读。
<input readonly onfocus="this.removeAttribute('readonly');" />