前端编写代码时,查看浏览器控制台会出现的警告错误[DOM] Password field is not contained in a form:或者是 input 警告[DOM] Input elements should have autocomplete attributes (suggested: “new-password”)

1, 出现警告错误[DOM] Password field is not contained in a form:的解决方法是:
在input标签外添加上标签form

<div class="form-group">
              <form>
              密码:
              <input type="password" class="form-control" id="exampleInputPassword1" name="password" placeholder="请输入密码"/>
              </form>
            </div>

2, 出现 input 警告[DOM] Input elements should have autocomplete attributes (suggested: “new-password”)的解决方法:
添加placeholder属性——作用:规定输入字段是否应该启用自动完成功能

<div class="form-group">
              <form>
              密码:
              <input type="password" class="form-control" id="exampleInputPassword1" name="password" placeholder="请输入密码" autocomplete="off"/>
              </form>
            </div>
Logo

基于 Vue 的企业级 UI 组件库和中后台系统解决方案,为数万开发者服务。

更多推荐