在前端开发中,有时候我们会遇到需要将input输入框的缓存记录去掉的操作;下图所示:

去除input输入框输入缓存(图1)

那么这种情况我们有两种处理方法(下面大家拿小本本记好了哈):

方法一:在 input 中添加 autocomplete="off";

例:

<input type="text" autocomplete="off" name="username" />

方法二:在 input 所在的 form 标签中添加 autocomplete="off";

例:

<form action="#" autocomplete="off">
  <input type="text" name="username" />
</form>