美文网首页
清除input输入框的历史记录

清除input输入框的历史记录

作者: 躺在家里干活 | 来源:发表于2019-09-29 10:23 被阅读0次

html 的 input 输入框 会有记录功能,下次输入时总是会出现之前输入历史记录的下拉框,但是有时这个历史记录又很不友好,所以需要将历史记录清除,这时一个属性即可搞定 autocomplete="off"

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

此外补充一下 input 的相关 css

input{
  /*去掉ios阴影*/
  -webkit-appearance: none;
  /*去掉ios点击高亮*/
  -webkit-tap-highlight-color: transparent;
  /*聚焦时去掉轮廓*/
  outline: none;
  /*去掉边框*/
  border: none;
  /*禁止手动改变input框大小*/
  resize: none;
}

相关文章

网友评论

      本文标题:清除input输入框的历史记录

      本文链接:https://www.haomeiwen.com/subject/lhlkuctx.html