我已經使用Jade創建了一個表單頁面,並且正在使用jQuery驗證插件進行驗證。樣式化jQuery驗證錯誤消息
我想使用Bootstrap來設計我的錯誤消息。我想使用.has-error
類和.has-success
類。這些必須用於父級div
和.form-group
。更多詳情here。
我一直在玩errorClass,errorElement,errorContainer,...選項,但我似乎無法找到合適的組合。我在這裏錯過了什麼?
這是我的形式:
form#signupForm.form-horizontal(method='post', action='')
.form-group
label.col-sm-2.control-label(for='firstName')
| First Name:
.col-sm-10
input#firstName.form-control(type='text', placeholder='John',name='firstName')
.form-group
label.col-sm-2.control-label(for='lastName')
| Last Name:
.col-sm-10
input#lastName.form-control(type='text', placeholder='Doe', name='lastName')
.form-group
.col-sm-2.control-label
button.btn.btn-default(type='submit')
| Submit
我在驗證代碼嘗試這樣做:
errorElement: 'div',
errorClass: 'has-error',
時遇到了問題,根據他們的階級或增加一個元素類上時,有一個錯誤的造型元素? – Gezzasa 2014-12-02 08:26:59
將該類添加到某個元素 – JNevens 2014-12-02 08:35:49
關於這個問題的一個想法 - 您可以通過擺脫翡翠並僅顯示生成的HTML來改進它。除非翡翠是問題的一部分,否則它並沒有真正添加任何問題。 – Ryley 2014-12-02 21:48:01