本文主要是介绍[DOM] input 警告[DOM] Input elements should have autocomplete attributes(suggested:“current-password),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
警告信息:
这个虽然不影响效果,但是有的时候自动填充密码时会把密码带出来
[DOM] input 警告[DOM] Input elements should have autocomplete attributes(suggested:"current-password)
意思为:输入元素应具有自动完成属性
<input type="password" />
定义和用法
autocomplete 属性规定输入字段是否应该启用自动完成功能。
自动完成允许浏览器预测对字段的输入。当用户在字段开始键入时,浏览器基于之前键入过的值,应该显示出在字段中填写的选项。
注释:autocomplete 属性适用于 <form>,以及下面的 <input> 类型:text, search, url, telephone, email, password, datepickers, range 以及 color。
autocomplete属性值
值 | 描述 |
---|---|
on | 默认。规定启用自动完成功能。 |
off | 规定禁用自动完成功能。 |
w3c autocomplete文档
解决方案:
只需要加上这个属性就行autocomplete
1.原生js,vue
<input type="password" autocomplete/>
2.react里属性都为驼峰autoComplete
<input type="password" autoComplete=""/>
//或者
<input type="password" autoComplete="on"/> //以及off都行
这篇关于[DOM] input 警告[DOM] Input elements should have autocomplete attributes(suggested:“current-password)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!