表单报错:Password field is not contained in a form
生活随笔
收集整理的這篇文章主要介紹了
表单报错:Password field is not contained in a form
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
控制臺報錯:
1、Password field is not contained in a form
2、Input elements should have autocomplete attributes (suggested: “new-password”)
1的解決方法就是在input標簽外層嵌套一個form標簽就ok,
2的解決方式是在input標簽上加一個屬性autocomplete=“off”
<form> <input type="password" class="form-control" id="oldpwd" placeholder="原密碼" autocomplete="off"> </form>參考文章:https://blog.csdn.net/cc6_66/article/details/108780690
總結
以上是生活随笔為你收集整理的表单报错:Password field is not contained in a form的全部內容,希望文章能夠幫你解決所遇到的問題。