HTML中Input elements should have autocomplete attributes的解决方案

kwfwservice.php:1 [DOM] Input elements should have autocomplete attributes (suggested: “current-password”): (More info: https://goo.gl/9p2vKq)

<input name="password" id="password" lay-verify="required" placeholder="密码" type="password" class="layui-input">

新增 autocomplete="off"

 <input name="password" id="password" lay-verify="required" placeholder="密码" type="password" class="layui-input" autocomplete="off">

autocomplete是一种HTML属性,它用于指示表单输入字段是否应启用自动完成功能。当用户在输入字段中开始键入时,自动完成允许浏览器预测并建议输入值。

autocomplete属性可以在HTML的元素以及类型的text、search、url、telephone、email、password、datepickers、range、color中使用。它可以通过设置on或off值来开启或关闭自动完成功能。

具体来说,如果设置autocomplete=“on”,则浏览器将启动自动完成功能;如果设置autocomplete=“off”,则禁用自动完成功能。例如,浏览器可能会让用户保存其姓名、地址、电话号码和电子邮件地址以用于自动完成目的。


@漏刻有时

你可能感兴趣的:(AIGC,html,前端)