An invalid form control with name='xxx' is not focusable 的解決方案

在html5 Form表單中,有的時候須要特殊需求,須要隱藏一部分表單元素。提交的時候,瀏覽器console會報以下錯誤:css

An invalid form control with name='xxx' is not focusablehtml

緣由是部分隱藏的表單是require的,提交的時候須要驗證。解決方法是,設置隱藏的元素,設置一個css樣式:html5

.hidden{
   opacity: 0;
}

假如須要隱藏的表單元素,直接設置其class=「hidden」便可。就不要使用hide()和show()方法來顯示隱藏了。瀏覽器

相關文章
相關標籤/搜索