Html input防止自动填充autocomplete

Html input防止自动填充autocomplete

input直接设置 autocomplete='off'autocomplete='nope' 是不行的

最有效的方法先设置成只读,获取焦点时再取消只读。

<input readonly onfocus="this.removeAttribute('readonly');" />

Leave a Comment

豫ICP备19001387号-1